mirror of
https://github.com/whyour/qinglong.git
synced 2025-06-03 07:46:08 +08:00
19 lines
328 B
TypeScript
19 lines
328 B
TypeScript
import React from 'react';
|
|
import { Button, Result, Typography } from 'antd';
|
|
|
|
const { Link } = Typography;
|
|
|
|
const NotFound: React.FC = () => (
|
|
<Result
|
|
status="404"
|
|
title="404"
|
|
extra={
|
|
<Button type="primary">
|
|
<Link href="/">返回首页</Link>
|
|
</Button>
|
|
}
|
|
/>
|
|
);
|
|
|
|
export default NotFound;
|