import { Button, Empty } from 'antd' import { useNavigate } from 'react-router' type NotFoundPageProps = { title?: string } export default function NotFoundPage({ title = '页面不存在' }: NotFoundPageProps) { const navigate = useNavigate() return (
) }