10 lines
285 B
TypeScript
10 lines
285 B
TypeScript
import { ApplicationCandidateData } from "@heygermany/sdk"
|
|
import { useForm } from "react-hook-form"
|
|
|
|
export const useCandidateForm = (candidate: ApplicationCandidateData) => {
|
|
const methods = useForm<ApplicationCandidateData>({
|
|
defaultValues: candidate,
|
|
})
|
|
|
|
return methods
|
|
} |