From eef46c35ac769caf62aa3edae669eb39c054f79a Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Mon, 12 Sep 2022 01:00:29 +0200 Subject: [PATCH] Updated the App component --- src/App.jsx | 27 +++++++++++++++++++++------ 1 file changed, 21 insertions(+), 6 deletions(-) diff --git a/src/App.jsx b/src/App.jsx index 60e9ee5..19a8ab4 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1,8 +1,23 @@ -function App() { - return ( -
-
- ) -} +import {BrowserRouter, Route, Routes} from "react-router-dom"; +import Navigation from "@/common/components/Navigation"; +import Home from "@/pages/Home"; +import Features from "@/pages/Features"; +import Coins from "@/pages/Coins"; +import Status from "@/pages/Status"; +import More from "@/pages/More"; + +const App = () => ( + + + + + }> + }> + }> + }> + }> + + +) export default App; \ No newline at end of file