domain-watchdog/assets/pages/NotFoundPage.tsx
2024-07-26 18:31:47 +02:00

11 lines
230 B
TypeScript

import {Result} from "antd";
import React from "react";
export default function NotFoundPage() {
return <Result
status="404"
title="404"
subTitle="Sorry, the page you visited does not exist."
/>
}