domain-watchdog/assets/pages/NotFoundPage.tsx
2024-07-29 18:54:28 +02:00

12 lines
256 B
TypeScript

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