* Move frontend to root * Fix backend issues * Remove old routes * Setup Dockerfile * Fix today /tags multiplt requests issue * Fix race condition on today's inbox widget * Fix cors development issue * Fix CORS for Dockerfile * Fix dockerised settings for infinite loop * Fix translation issues * fixup! Fix translation issues --------- Co-authored-by: Your Name <you@example.com>
12 lines
221 B
TypeScript
12 lines
221 B
TypeScript
import React from 'react';
|
|
|
|
const NotFound: React.FC = () => {
|
|
return (
|
|
<div>
|
|
<h1>404 - Page Not Found</h1>
|
|
<p>The page you're looking for doesn't exist.</p>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default NotFound;
|