Skip to content

Instantly share code, notes, and snippets.

@Colour-Full
Last active March 25, 2018 17:17
Show Gist options
  • Save Colour-Full/266cac33a541491917b55829cd7bcc91 to your computer and use it in GitHub Desktop.
Save Colour-Full/266cac33a541491917b55829cd7bcc91 to your computer and use it in GitHub Desktop.
Simple Router Example Index JS
import React from "react";
import ReactDOM from "react-dom";
import Nav from "./Nav";
import './index.css'
ReactDOM.render(
<Nav />,
document.getElementById("root")
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment