domain-watchdog/assets/pages/NotFoundPage.tsx

11 lines
230 B
TypeScript
Raw Normal View History

2024-07-26 18:31:47 +02:00
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."
/>
}