import { HomeOutlined } from "@ant-design/icons"; import { useCallback } from "react"; interface NotFoundPageProps { onGoHome: () => void; } function NotFoundPage({ onGoHome }: NotFoundPageProps) { return (
404

页面未找到

您访问的页面不存在或已被移除。

); } export default NotFoundPage;