import { memo } from 'react' import type { FC, ReactNode } from 'react' interface Iprops { children?: ReactNode } const NotFound: FC = () => { return
404 Not Found
} export default memo(NotFound)