Files
planka/client/src/components/NotFound.jsx
2022-02-09 00:56:01 +05:00

17 lines
264 B
JavaScript
Executable File

import React from 'react';
import { useTranslation } from 'react-i18next';
function NotFound() {
const [t] = useTranslation();
return (
<h1>
{t('common.pageNotFound', {
context: 'title',
})}
</h1>
);
}
export default NotFound;