import {Button, Input} from 'antd'; import css from './index.module.css'; import {FC} from 'react'; import {useFormState} from './hooks'; import cla from 'classnames'; import {Controller} from 'react-hook-form'; const LoginInfo: FC = function() { const [{errors, control, isLoading, isDisable}, {onSubmit}] = useFormState(); return (

仓储物流管理平台

); }} />

{errors.name?.message ?? ''}

); }} />

{errors.password?.message ?? ''}

); }; export default LoginInfo;