import { Result } from 'antd' import React, { FC } from 'react' import { withRouter, RouteComponentProps } from 'react-router-dom' type P = RouteComponentProps & {} const Page404: FC
= () => ( props.history.push("/")}> // 返回首页 // // } > ) export default withRouter(Page404)