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