mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-22 04:05:41 +00:00
12 lines
296 B
TypeScript
12 lines
296 B
TypeScript
|
|
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>}
|
||
|
|
/>
|
||
|
|
}
|