Showing
1 changed file
with
2 additions
and
2 deletions
... | @@ -2,11 +2,11 @@ import React from "react"; | ... | @@ -2,11 +2,11 @@ import React from "react"; |
2 | import PropTypes from "prop-types"; | 2 | import PropTypes from "prop-types"; |
3 | import { BrowserRouter as Router, Route, Switch } from "react-router-dom"; | 3 | import { BrowserRouter as Router, Route, Switch } from "react-router-dom"; |
4 | import Auth from "./Auth/AuthContainer"; | 4 | import Auth from "./Auth/AuthContainer"; |
5 | -import Home from "./Home"; | 5 | +import Home from "../Components/Home"; |
6 | 6 | ||
7 | const LoggedInRoutes = () => ( | 7 | const LoggedInRoutes = () => ( |
8 | <> | 8 | <> |
9 | - <Route exact path="/" component={Home} /> | 9 | + <Route exact path="/Home" component={Home} /> |
10 | </> | 10 | </> |
11 | ); | 11 | ); |
12 | 12 | ... | ... |
-
Please register or login to post a comment