refactored Navbar component

This commit is contained in:
andres alcocer
2021-10-07 16:05:04 -04:00
parent 39b9995f82
commit 0bbbb9d5f3
4 changed files with 130 additions and 91 deletions

View File

@@ -1,9 +1,11 @@
import React from 'react';
export default function NotFound() {
const NotFound = () => {
return (
<div>
<h1>NOT FOUND</h1>
</div>
);
}
export default NotFound