Skip to content

Instantly share code, notes, and snippets.

@notflip
Created March 2, 2025 19:30
Show Gist options
  • Save notflip/83a7a5439a03727c5ec55e4cd347085d to your computer and use it in GitHub Desktop.
Save notflip/83a7a5439a03727c5ec55e4cd347085d to your computer and use it in GitHub Desktop.
Textfield using React hook form and Shadcn/ui
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