diff options
Diffstat (limited to 'vnext/src/app.js')
-rw-r--r-- | vnext/src/app.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/vnext/src/app.js b/vnext/src/app.js index fed735f7..1991a14d 100644 --- a/vnext/src/app.js +++ b/vnext/src/app.js @@ -5,6 +5,7 @@ const history = createHistory(); import Navigation from "./components/Navigation" import Discover from "./components/Discover" +import Post from "./components/Post" class App extends React.Component { constructor(props) { @@ -18,7 +19,10 @@ class App extends React.Component { return ( <div className="wrapper"> <Navigation onNavigate={this.navigate} /> - <Discover params={this.state.location.search} /> + { location.pathname === "/" && + <Discover params={this.state.location.search} /> } + { location.pathname === "/post" && + <Post /> } </div> ) } |