diff --git a/index.html b/index.html index f0e64d1..1459491 100644 --- a/index.html +++ b/index.html @@ -3,7 +3,27 @@
-+ {body} +
+ ); +}); +FormMessage.displayName = 'FormMessage'; + +export { + Form, + FormControl, + FormDescription, + FormField, + FormItem, + FormLabel, + FormMessage, + useFormField, +}; diff --git a/src/components/ui/textarea.tsx b/src/components/ui/textarea.tsx new file mode 100644 index 0000000..be6aed7 --- /dev/null +++ b/src/components/ui/textarea.tsx @@ -0,0 +1,23 @@ +import * as React from 'react'; + +import { cn } from '@/lib/utils'; + +export type TextareaProps = React.TextareaHTMLAttributes