* Add lint-fix npm target * Sync eslint+plugins with backend * Add prettier * Ignore no-explicit-any lint rule for now * Silence eslint react warning * Format frontend via prettier * Lint frontend. --------- Co-authored-by: antanst <>
12 lines
255 B
TypeScript
12 lines
255 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;
|