domain-watchdog/assets/pages/NotFoundPage.tsx

12 lines
296 B
TypeScript
Raw Normal View History

import {Button, 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."
extra={<Button type="primary">Back Home</Button>}
/>
}