6 lines
199 B
TypeScript
6 lines
199 B
TypeScript
import { applicantLogin } from "@/services/apis/auth.api";
|
|
import { useMutation } from "@tanstack/react-query";
|
|
|
|
export const useApplicantLogin = () =>
|
|
useMutation({ mutationFn: applicantLogin });
|