import css from './index.module.css'; import {Row, Col, Input} from 'antd'; import classNames from 'classnames'; import {FC} from 'react'; import {Controller, UseControllerProps} from 'react-hook-form'; type Props = { label: string; placeholder?: string; width: string; height: string; } & UseControllerProps; const OperationField: FC = function({ control, name, label, placeholder, height, }) { return (

{errorTips}

); }} />
); }; export default OperationField;