2021-03-28 21:20:05 +00:00
|
|
|
import { Component } from "react";
|
2021-03-31 04:30:37 +00:00
|
|
|
import Footer from "./shared-components/footer-component/Footer";
|
|
|
|
import Navbar from "./shared-components/navbar-component/Navbar";
|
|
|
|
import { BrowserRouter, Route } from "react-router-dom";
|
2021-04-01 01:01:55 +00:00
|
|
|
import HomePage from "./homePage/Homepage";
|
2021-03-31 18:26:10 +00:00
|
|
|
import ListingsPage from "./listings-page/ListingsPage";
|
|
|
|
import AgentPage from "./agent-page/AgentPage";
|
2021-04-05 18:58:04 +00:00
|
|
|
import ListingPage from "./listings-page/single-listing/listing-page";
|
|
|
|
// import Login from "./login-page/Login";
|
|
|
|
import Account from "./login-page/account/Account";
|
2021-03-31 18:26:10 +00:00
|
|
|
// import ContactUs from "./shared-components/Contact-us/Contact-us";
|
2021-03-28 15:39:48 +00:00
|
|
|
|
2021-03-28 21:20:05 +00:00
|
|
|
class App extends Component {
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<div className="App">
|
2021-03-31 04:30:37 +00:00
|
|
|
<BrowserRouter>
|
|
|
|
<Navbar></Navbar>
|
2021-03-31 19:35:29 +00:00
|
|
|
<Route exact path="/" component={HomePage}></Route>
|
2021-03-31 04:30:37 +00:00
|
|
|
<Route path="/listings" component={ListingsPage}></Route>
|
|
|
|
<Route path="/agents" component={AgentPage}></Route>
|
2021-04-05 18:58:04 +00:00
|
|
|
<Route path="/listing-page" component={ListingPage}></Route>
|
|
|
|
<Route path="/login" component={Account}></Route>
|
2021-03-31 04:30:37 +00:00
|
|
|
</BrowserRouter>
|
|
|
|
<Footer></Footer>
|
2021-03-28 21:20:05 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2021-03-28 15:39:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export default App;
|