import type { AppFields } from 'types/app'; import { useFormContext } from "react-hook-form"; import TextField from 'components/TextField'; type InputCreatorProps = { onChange?: React.ChangeEventHandler; schema: AppFields; }; export default function InputCreator(props: InputCreatorProps) { const { onChange, schema, } = props; const { control } = useFormContext(); const { key: name, label, type, required, readOnly, value, description, docUrl, clickToCopy, } = schema; return ( ); };