import React from 'react'; import { useTranslation } from 'react-i18next'; function NotFoundPage() { const { t } = useTranslation(); return (
{t('Session not found.')}
{t('Please check your data retention policy.')}
); } export default NotFoundPage;