Created
March 2, 2025 19:30
-
-
Save notflip/83a7a5439a03727c5ec55e4cd347085d to your computer and use it in GitHub Desktop.
Textfield using React hook form and Shadcn/ui
This file contains 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
import { | |
FormControl, | |
FormField, | |
FormItem, | |
FormLabel, | |
FormMessage, | |
} from "@/components/ui/form" | |
import { Input } from "@/components/ui/input" | |
export const TextField = ({ name, label, defaultValue, control }: any) => { | |
return ( | |
<FormField | |
control={control} | |
name={name} | |
render={({ field, fieldState: { error } }) => ( | |
<FormItem> | |
<FormLabel>{label}</FormLabel> | |
<FormControl> | |
<Input placeholder={defaultValue} {...field} /> | |
</FormControl> | |
<FormMessage /> | |
</FormItem> | |
)} | |
/> | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment