Skip to content

Commit 9ad9885

Browse files
committed
removed popular pending recent activity card
1 parent 4a39200 commit 9ad9885

File tree

9 files changed

+340
-255
lines changed

9 files changed

+340
-255
lines changed

src/App.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React from 'react';
22
import Home from'./Components/Views/Home'
33
import './App.scss';
44
import { BrowserRouter as Router } from "react-router-dom"
5-
import LendingPage from './Components/Views/LendingPage'
5+
import LandingPage from './Components/Views/LandingPage'
66
import { Route, Switch } from "react-router"
77

88

@@ -11,9 +11,8 @@ function App() {
1111
<div className="App">
1212
<Router>
1313
<Switch>
14-
<Route path="/" exact component={LendingPage} />
14+
<Route path="/" exact component={LandingPage} />
1515
<Route path="/:username" exact component={Home}/>
16-
{/* <Home /> */}
1716
</Switch>
1817
</Router>
1918
</div>

0 commit comments

Comments
 (0)