source: src/components/hook-form/form-provider.tsx@ 5d6f37a

main
Last change on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 436 bytes
Line 
1import { FormProvider as Form, UseFormReturn } from 'react-hook-form';
2
3// ----------------------------------------------------------------------
4
5type Props = {
6 children: React.ReactNode;
7 methods: UseFormReturn<any>;
8 onSubmit?: VoidFunction;
9};
10
11export default function FormProvider({ children, onSubmit, methods }: Props) {
12 return (
13 <Form {...methods}>
14 <form onSubmit={onSubmit}>{children}</form>
15 </Form>
16 );
17}
Note: See TracBrowser for help on using the repository browser.