Separate Client Portal & Dashboard
This commit is contained in:
24
frontend/dashboard/src/components/hook-form/RHFTextField.tsx
Normal file
24
frontend/dashboard/src/components/hook-form/RHFTextField.tsx
Normal file
@@ -0,0 +1,24 @@
|
||||
// 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} />
|
||||
)}
|
||||
/>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user