Files
fe_service_ebtp_frontend/src/pages/404.tsx
2025-07-11 16:22:29 +08:00

19 lines
406 B
TypeScript

import { Button, Result } from 'antd';
import React from 'react';
import { history } from '@umijs/max';
const NoFoundPage: React.FC<{}> = () => (
<Result
status="404"
title="404"
subTitle="对不起,您访问的页面不存在。"
// extra={
// <Button type="primary" onClick={() => history.push('/')}>
// Back Home
// </Button>
// }
/>
);
export default NoFoundPage;