mirror of
https://github.com/plankanban/planka.git
synced 2025-07-30 18:49:44 +02:00
16 lines
264 B
JavaScript
Executable file
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;
|