This commit is contained in:
none
2023-03-23 16:35:20 +08:00
parent e7421f67cc
commit 9f90bd75d3
22 changed files with 190 additions and 157 deletions

View File

@@ -1,9 +1,8 @@
import { Button, Result } from "antd";
import React from "react";
import { useNavigate } from "react-router-dom";
import styles from "./index.module.less";
export const ErrorPage: React.FC<any> = () => {
const ErrorPage = () => {
const navigate = useNavigate();
return (
@@ -25,3 +24,5 @@ export const ErrorPage: React.FC<any> = () => {
/>
);
};
export default ErrorPage;