mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-18 02:05:36 +00:00
12 lines
258 B
TypeScript
12 lines
258 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.`}
|
|
/>
|
|
} |