Created
November 25, 2024 07:02
-
-
Save smashercosmo/f9629d5585d97d89d88b1bbbb3c3cb8e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function Form() { | |
| const { control } = useForm({ | |
| defaultValues: { | |
| name: "", | |
| }; | |
| }); | |
| return ( | |
| <form> | |
| <SharedInput control={control} name="name" /> | |
| </form> | |
| ) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment