mirror of
https://github.com/plankanban/planka.git
synced 2025-12-27 09:14:59 +03:00
Initial commit
This commit is contained in:
16
client/src/components/NotFound.jsx
Executable file
16
client/src/components/NotFound.jsx
Executable file
@@ -0,0 +1,16 @@
|
||||
import React from 'react';
|
||||
import { useTranslation } from 'react-i18next';
|
||||
|
||||
const NotFound = () => {
|
||||
const [t] = useTranslation();
|
||||
|
||||
return (
|
||||
<h1>
|
||||
{t('common.pageNotFound', {
|
||||
context: 'title',
|
||||
})}
|
||||
</h1>
|
||||
);
|
||||
};
|
||||
|
||||
export default NotFound;
|
||||
Reference in New Issue
Block a user