import { HomeOutlined } from '@ant-design/icons'; import { Button, Result } from 'antd'; import { FormattedMessage, Link } from 'dumi'; import React from 'react'; export interface NotFoundProps { router: { push: (pathname: string) => void; replace: (pathname: string) => void; }; } const NotFoundPage: React.FC = () => { return (
} extra={ } />
); }; export default NotFoundPage;