Skip to content

Instantly share code, notes, and snippets.

@aerrity
Created March 14, 2018 10:39
Show Gist options
  • Save aerrity/1234030e7f220910b312f19594fb195b to your computer and use it in GitHub Desktop.
Save aerrity/1234030e7f220910b312f19594fb195b to your computer and use it in GitHub Desktop.
import React from 'react'
import ReactDOM from 'react-dom';
import {BrowserRouter, Route, Link} from 'react-router-dom';
class Home extends React.Component {
render() {
return(
<div>
<h2>Home</h2>
</div>
);
}
}
class About extends React.Component {
render() {
return(
<div>
<h2>About</h2>
</div>
);
}
}
class Contact extends React.Component {
render() {
return(
<div>
<h2>Contact Us</h2>
</div>
);
}
}
class BasicExample extends React.Component {
render() {
return(
<BrowserRouter>
<div>
<ul>
<li><Link to="/">Home</Link></li>
<li><Link to="/about">About</Link></li>
<li><Link to="/contact">Contact Us</Link></li>
</ul>
<hr/>
{/* The exact keyword ensures the '/' route matches only '/' and not '/anything-else'--> */}
<Route exact path="/" component={Home}/>
<Route path="/about" component={About}/>
<Route path="/contact" component={Contact}/>
</div>
</BrowserRouter>
);
}
}
ReactDOM.render(
<BasicExample />,
document.getElementById('root')
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment