domain-watchdog/assets/pages/NotFoundPage.tsx

12 lines
256 B
TypeScript
Raw Normal View History

2024-07-26 18:31:47 +02:00
import {Result} from "antd";
import React from "react";
import {t} from 'ttag'
export default function NotFoundPage() {
return <Result
status="404"
title="404"
2024-07-28 15:36:22 +02:00
subTitle={t`Sorry, the page you visited does not exist.`}
/>
}