NotFoundComponent.tsx 322 B

12345678910111213
  1. import { FileExclamationOutlined } from "@ant-design/icons";
  2. import "./NotFoundComponent.sass";
  3. function NotFoundComponent() {
  4. return (
  5. <div className="not-found-div">
  6. <FileExclamationOutlined />
  7. &nbsp; 什么也没找到呢,点击喵喵返回主页
  8. </div>
  9. );
  10. }
  11. export default NotFoundComponent;