Skip to content

Instantly share code, notes, and snippets.

@eh3rrera
Created November 15, 2017 23:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eh3rrera/6e4afa00e1802ce8e3f92adb8643cf2b to your computer and use it in GitHub Desktop.
Save eh3rrera/6e4afa00e1802ce8e3f92adb8643cf2b to your computer and use it in GitHub Desktop.
// …
import {
Route,
Link,
Switch,
Redirect
} from 'react-router-dom'
// …
class App extends Component {
render() {
return (
<div className="App-intro">
<Switch>
<Route exact path="/" component={Home} />
<Route path="/messages" component={Messages} />
<Route path="/about" component={About} />
<Redirect to="/" />
</Switch>
</div>
</div>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment