From a838e0e80d4da78f0d5b8a7b76ea8c7e0e03df86 Mon Sep 17 00:00:00 2001 From: Joshua Hsueh Date: Sun, 31 Jan 2021 00:29:25 -0500 Subject: [PATCH] added nav bar --- frontend/public/index.html | 15 +++++++++++ frontend/src/App.js | 3 ++- frontend/src/components/Browse.js | 11 ++++++++ frontend/src/components/Nav.js | 45 +++++++++++++++++++++++++++++++ 4 files changed, 73 insertions(+), 1 deletion(-) create mode 100644 frontend/src/components/Nav.js diff --git a/frontend/public/index.html b/frontend/public/index.html index d079fa0..b24f39a 100644 --- a/frontend/public/index.html +++ b/frontend/public/index.html @@ -14,6 +14,21 @@ + + +
diff --git a/frontend/src/App.js b/frontend/src/App.js index 53aeb78..4925f46 100644 --- a/frontend/src/App.js +++ b/frontend/src/App.js @@ -5,7 +5,7 @@ import Bank from "./components/Bank"; import Profile from "./components/Profile"; import Browse from "./components/Browse"; import Login from "./components/Login"; - +import Nav from "./components/Nav"; import "./App.css"; function App() { @@ -28,6 +28,7 @@ function App() { return (
+ + ); +}; + +export default Nav;