blob: 8c174f21c3a83a4c61ca28c9105ef4f3fbeb2bc0 [file] [log] [blame] [edit]
import React from 'react';
import { Button, Result } from 'antd';
import { Link } from 'react-router-dom';
const NotFoundPage = () => {
return (
<Result
status="404"
title="404"
subTitle="抱歉,您访问的页面不存在。"
extra={
<Button type="primary">
<Link to="/">返回首页</Link>
</Button>
}
/>
);
};
export default NotFoundPage;