Skip to content

Instantly share code, notes, and snippets.

@hpjaj
Created November 14, 2018 15:04
Show Gist options
  • Select an option

  • Save hpjaj/75a41f6253a97723111a810720b1537a to your computer and use it in GitHub Desktop.

Select an option

Save hpjaj/75a41f6253a97723111a810720b1537a to your computer and use it in GitHub Desktop.
// app/javascript/components/App.js
...
class App extends React.Component {
render() {
return (
<div>
<Switch>
<Route exact path="/" component={Home} />
<Route exact path="/posts" component={Posts} />
<Route exact path="/new_post" component={NewPost} />
</Switch>
</div>
)
}
}
export default App
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment