UNPKG

react-hook-form-generator

Version:

A [React](https://reactjs.org/) component to quickly and easily generate forms from object schema. Built with [React Hook Form](https://react-hook-form.com/) and [Chakra UI](https://chakra-ui.com/).

4 lines (3 loc) 164 B
import { FC } from 'react'; import { FieldProps, TextAreaFieldSchema } from '../types'; export declare const TextAreaField: FC<FieldProps<TextAreaFieldSchema>>;