mirror of
https://github.com/plankanban/planka.git
synced 2025-12-26 17:25:03 +03:00
17 lines
264 B
JavaScript
Executable File
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;
|