// form import { useFormContext, Controller } from 'react-hook-form'; // @mui import { TextField, TextFieldProps } from '@mui/material'; // ---------------------------------------------------------------------- interface IProps { name: string; } export default function RHFTextField({ name, ...other }: IProps & TextFieldProps) { const { control } = useFormContext(); return ( ( )} /> ); }