From 3853e644352142376a9d9d2b496e56df8ade0902 Mon Sep 17 00:00:00 2001 From: Mahadari Sandeep Date: Sat, 20 May 2023 15:34:13 +0530 Subject: [PATCH] initial commit --- src/App.js | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/App.js b/src/App.js index 32312b8..2df2267 100644 --- a/src/App.js +++ b/src/App.js @@ -1,7 +1,7 @@ import { makeStyles } from "@material-ui/core"; import Homepage from "./Pages/HomePage"; import "./App.css"; -import { BrowserRouter, Route } from "react-router-dom"; +import { BrowserRouter,Routes, Route } from "react-router-dom"; import CoinPage from "./Pages/CoinPage"; import Header from "./components/Header"; @@ -17,13 +17,17 @@ function App() { const classes = useStyles(); return ( - +
+ + + +
-
+ ); }