16 lines
371 B
TypeScript
Raw Normal View History

2022-10-20 11:57:30 -04:00
import React from 'react';
import { translate } from 'react-polyglot';
import type { ComponentType } from 'react';
import type { TranslateProps } from 'react-polyglot';
const NotFoundPage = ({ t }: TranslateProps) => {
return (
2023-03-30 13:29:09 -04:00
<div>
2022-10-20 11:57:30 -04:00
<h2>{t('app.notFoundPage.header')}</h2>
2023-03-30 13:29:09 -04:00
</div>
2022-10-20 11:57:30 -04:00
);
};
export default translate()(NotFoundPage) as ComponentType<{}>;