1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-31 11:09:43 +02:00
planka/client/src/components/NotFound.jsx

17 lines
264 B
React
Raw Normal View History

2019-08-31 04:07:25 +05:00
import React from 'react';
import { useTranslation } from 'react-i18next';
2022-02-09 00:56:01 +05:00
function NotFound() {
2019-08-31 04:07:25 +05:00
const [t] = useTranslation();
return (
<h1>
{t('common.pageNotFound', {
context: 'title',
})}
</h1>
);
2022-02-09 00:56:01 +05:00
}
2019-08-31 04:07:25 +05:00
export default NotFound;