Files
aso/frontend/dashboard/src/components/hook-form/RHFTextField.tsx
2026-02-04 14:39:20 +07:00

25 lines
620 B
TypeScript

// 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 (
<Controller
name={name}
control={control}
render={({ field, fieldState: { error } }) => (
<TextField {...field} fullWidth error={!!error} helperText={error?.message} {...other} />
)}
/>
);
}