merging components
This commit is contained in:
parent
aca4194bb3
commit
878ac920c2
2 changed files with 20417 additions and 29 deletions
20436
package-lock.json
generated
20436
package-lock.json
generated
File diff suppressed because it is too large
Load diff
10
src/App.js
10
src/App.js
|
@ -2,10 +2,10 @@ import { Component } from "react";
|
|||
import Footer from "./shared-components/footer-component/Footer";
|
||||
import Navbar from "./shared-components/navbar-component/Navbar";
|
||||
import { BrowserRouter, Route } from "react-router-dom";
|
||||
import HomePage from "./homePage/homePage";
|
||||
import ListingsPage from "./listings-page/listings-page";
|
||||
import AgentPage from "./agent-page/agent-page";
|
||||
import ContactUs from "./shared-components/Contact-us/Contact-us";
|
||||
import HomePage from "./homePage/Homepage";
|
||||
import ListingsPage from "./listings-page/ListingsPage";
|
||||
import AgentPage from "./agent-page/AgentPage";
|
||||
// import ContactUs from "./shared-components/Contact-us/Contact-us";
|
||||
|
||||
import Homepage from "./homePage/Homepage";
|
||||
|
||||
|
@ -18,7 +18,7 @@ class App extends Component {
|
|||
<Route path="/home" component={HomePage}></Route>
|
||||
<Route path="/listings" component={ListingsPage}></Route>
|
||||
<Route path="/agents" component={AgentPage}></Route>
|
||||
<Route path="/contact-us" component={ContactUs}></Route>
|
||||
{/* <Route path="/contact-us" component={ContactUs}></Route> */}
|
||||
</BrowserRouter>
|
||||
|
||||
<Footer></Footer>
|
||||
|
|
Loading…
Reference in a new issue