File size: 173 Bytes
67edfce
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import { Result } from 'antd'
import React from 'react'

const NotFound: React.FC = () => {
  return <Result status="404" title="404 Not Found" />
}

export default NotFound