You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- import { history } from '@umijs/max';
- import { Button, Result } from 'antd';
- import React from 'react';
-
- const NoFoundPage: React.FC = () => (
- <Result
- status="404"
- title="404"
- subTitle="Sorry, the page you visited does not exist."
- extra={
- <Button type="primary" onClick={() => history.push('/')}>
- Back Home
- </Button>
- }
- />
- );
-
- export default NoFoundPage;
|