import { useMutation } from '@tanstack/react-query'; import { postEventJoinMutation } from '@/client/@tanstack/react-query.gen'; export function useJoinEvent() { return useMutation({ ...postEventJoinMutation(), }); }