mirror of
https://github.com/NinjaSurge/Project-Manager.git
synced 2026-03-09 03:12:42 -05:00
12 lines
186 B
JavaScript
12 lines
186 B
JavaScript
import '../Scss/pages/NotFound.scss';
|
|
|
|
const NotFound = () => {
|
|
return (
|
|
<div className="not-found">
|
|
<h1>Resource not found</h1>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default NotFound;
|