import React from 'react'
import NotFound404 from '../components/NotFound404'

const NotFound: React.FC = () => {
    return (
        <NotFound404 />
    )
}

export default NotFound