报价单魔魁
This commit is contained in:
34
src/pages/notFound/index.jsx
Normal file
34
src/pages/notFound/index.jsx
Normal file
@@ -0,0 +1,34 @@
|
||||
import React from 'react';
|
||||
import { Button, Result } from 'antd';
|
||||
import { useNavigate } from 'react-router-dom';
|
||||
|
||||
const NotFound = () => {
|
||||
const navigate = useNavigate();
|
||||
|
||||
return (
|
||||
<div className="h-screen flex items-center justify-center bg-gray-50">
|
||||
<Result
|
||||
status="404"
|
||||
title="404"
|
||||
subTitle="抱歉,您访问的页面不存在。"
|
||||
extra={[
|
||||
<Button
|
||||
type="primary"
|
||||
key="home"
|
||||
onClick={() => navigate('/dashboard')}
|
||||
>
|
||||
返回首页
|
||||
</Button>,
|
||||
<Button
|
||||
key="back"
|
||||
onClick={() => navigate(-1)}
|
||||
>
|
||||
返回上一页
|
||||
</Button>,
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default NotFound;
|
||||
Reference in New Issue
Block a user