Skip to content

Instantly share code, notes, and snippets.

@Colour-Full
Last active March 25, 2018 19:31
Show Gist options
  • Save Colour-Full/a1ae6bcd6c949bc237d570c925525a4f to your computer and use it in GitHub Desktop.
Save Colour-Full/a1ae6bcd6c949bc237d570c925525a4f to your computer and use it in GitHub Desktop.
React Router Simple Example Nav
import React, { Component } from "react";
import Home from "./Home";
import Blog from "./Blog";
import Contact from "./Contact";
class Nav extends Component {
render() {
return (
<div>
<h1>React Router Simple Starter</h1>
<ul className="header">
<li><a className="active" href="/">Home</a></li>
<li><a href="/blog">Blog</a></li>
<li><a href="/contact">Contact</a></li>
</ul>
<div className="content"></div>
</div>
);
}
}
export default Nav;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment