From d0464df0f64c237456adef7f4997ef9f05c5a53c Mon Sep 17 00:00:00 2001 From: Beau Findlay Date: Wed, 24 Apr 2024 14:15:00 +0100 Subject: [PATCH] Move nav bar to components folder --- src/Client/public/vite.svg | 1 - src/Client/src/{pages => components}/NavBar.tsx | 0 src/Client/src/pages/Layout.tsx | 2 +- 3 files changed, 1 insertion(+), 2 deletions(-) delete mode 100644 src/Client/public/vite.svg rename src/Client/src/{pages => components}/NavBar.tsx (100%) diff --git a/src/Client/public/vite.svg b/src/Client/public/vite.svg deleted file mode 100644 index e7b8dfb..0000000 --- a/src/Client/public/vite.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/Client/src/pages/NavBar.tsx b/src/Client/src/components/NavBar.tsx similarity index 100% rename from src/Client/src/pages/NavBar.tsx rename to src/Client/src/components/NavBar.tsx diff --git a/src/Client/src/pages/Layout.tsx b/src/Client/src/pages/Layout.tsx index 91a1d95..b33b95a 100644 --- a/src/Client/src/pages/Layout.tsx +++ b/src/Client/src/pages/Layout.tsx @@ -1,5 +1,5 @@ import { Outlet } from "react-router-dom"; -import NavBar from "./NavBar"; +import NavBar from "../components/NavBar"; export default function Layout() { return (