Skip to content

Instantly share code, notes, and snippets.

@Colour-Full
Last active March 25, 2018 19:31
Show Gist options
  • Select an option

  • Save Colour-Full/a1ae6bcd6c949bc237d570c925525a4f to your computer and use it in GitHub Desktop.

Select an option

Save Colour-Full/a1ae6bcd6c949bc237d570c925525a4f to your computer and use it in GitHub Desktop.

Revisions

  1. Colour-Full revised this gist Mar 25, 2018. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion Nav.jsx
    Original file line number Diff line number Diff line change
    @@ -10,7 +10,7 @@ class Nav extends Component {
    <h1>React Router Simple Starter</h1>
    <ul className="header">
    <li><a className="active" href="/">Home</a></li>
    <li><a href="/stuff">Stuff</a></li>
    <li><a href="/blog">Blog</a></li>
    <li><a href="/contact">Contact</a></li>
    </ul>
    <div className="content"></div>
  2. Colour-Full revised this gist Mar 25, 2018. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion Nav.jsx
    Original file line number Diff line number Diff line change
    @@ -9,7 +9,7 @@ class Nav extends Component {
    <div>
    <h1>React Router Simple Starter</h1>
    <ul className="header">
    <li><a href="/">Home</a></li>
    <li><a className="active" href="/">Home</a></li>
    <li><a href="/stuff">Stuff</a></li>
    <li><a href="/contact">Contact</a></li>
    </ul>
  3. Colour-Full created this gist Mar 25, 2018.
    22 changes: 22 additions & 0 deletions Nav.jsx
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,22 @@
    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 href="/">Home</a></li>
    <li><a href="/stuff">Stuff</a></li>
    <li><a href="/contact">Contact</a></li>
    </ul>
    <div className="content"></div>
    </div>
    );
    }
    }

    export default Nav;