1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-30 18:49:44 +02:00
planka/client/src/components/NotFound.jsx
2022-02-09 00:56:01 +05:00

16 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;