Files
supersonic/webapp/packages/supersonic-fe/src/pages/404.tsx
jerryjzhang dc4fc69b57 first commit
2023-06-12 18:44:01 +08:00

19 lines
399 B
TypeScript

import { Button, Result } from 'antd';
import React from 'react';
import { history } from 'umi';
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('/homepage')}>
Back Home
</Button>
}
/>
);
export default NoFoundPage;