mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-14 04:54:16 +00:00
13 lines
199 B
JavaScript
13 lines
199 B
JavaScript
import React from "react"
|
|
import { Result } from "antd"
|
|
|
|
export default () => {
|
|
return (
|
|
<Result
|
|
status="404"
|
|
title="404"
|
|
subTitle="Sorry, the page you visited does not exist."
|
|
/>
|
|
)
|
|
}
|