main
Last change
on this file was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago |
add customer
|
-
Property mode
set to
100644
|
File size:
436 bytes
|
Rev | Line | |
---|
[5d6f37a] | 1 | import { FormProvider as Form, UseFormReturn } from 'react-hook-form';
|
---|
| 2 |
|
---|
| 3 | // ----------------------------------------------------------------------
|
---|
| 4 |
|
---|
| 5 | type Props = {
|
---|
| 6 | children: React.ReactNode;
|
---|
| 7 | methods: UseFormReturn<any>;
|
---|
| 8 | onSubmit?: VoidFunction;
|
---|
| 9 | };
|
---|
| 10 |
|
---|
| 11 | export 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.