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