domain-watchdog/assets/pages/NotFoundPage.tsx

14 lines
286 B
TypeScript
Raw Permalink Normal View History

2024-12-30 23:50:15 +01:00
import {Result} from 'antd'
import React from 'react'
import {t} from 'ttag'
export default function NotFoundPage() {
2024-12-30 23:50:15 +01:00
return (
<Result
status='404'
title='404'
subTitle={t`Sorry, the page you visited does not exist.`}
/>
)
}