Files
fe_service_ebtp_frontend/src/pages/404.tsx

19 lines
406 B
TypeScript
Raw Normal View History

2020-12-23 11:14:35 +08:00
import { Button, Result } from 'antd';
import React from 'react';
2025-07-07 16:40:14 +08:00
import { history } from '@umijs/max';
2020-12-23 11:14:35 +08:00
const NoFoundPage: React.FC<{}> = () => (
<Result
status="404"
title="404"
2023-01-11 16:28:42 +08:00
subTitle="对不起,您访问的页面不存在。"
// extra={
// <Button type="primary" onClick={() => history.push('/')}>
// Back Home
// </Button>
// }
2020-12-23 11:14:35 +08:00
/>
);
export default NoFoundPage;