import React from 'react'; import { useTranslation } from 'react-i18next'; function NotFound() { const [t] = useTranslation(); return (

{t('common.pageNotFound', { context: 'title', })}

); } export default NotFound;