Newer
Older
import { useMutation, useQueryClient } from "@tanstack/react-query";
import { postGweet } from "../api/post-gweet";
export const useCreateGweet = () => {
const queryClient = useQueryClient();
return useMutation(
({
content,
userId: string;
replyToGweetId?: string | null;
quoteGweetId?: string | null;