Mythus's picture
Upload 224 files
7262ac3
raw
history blame contribute delete
173 Bytes
import { Result } from 'antd'
import React from 'react'
const NotFound: React.FC = () => {
return <Result status="404" title="404 Not Found" />
}
export default NotFound