import type { FC } from 'react'; import { history } from 'umi'; import { Button, Result } from 'antd'; const _404: FC = () => { return ( history.push('/') } >返回首页 )} /> ); }; export default _404;