Skip to content

Instantly share code, notes, and snippets.

View gyab's full-sized avatar

GYAB gyab

  • [object Location]
View GitHub Profile
@gyab
gyab / App.js
Created November 28, 2016 09:17
React simple routing
import React from 'react';
import ReactDOM from 'react-dom';
import Login from './Login.jsx';
//import SignUp './SignUp.jsx'
import { Router, Route, hashHistory } from 'react-router';
import './App.css';
ReactDOM.render((
<Router history={hashHistory}>
<Route path="/" component={Login}/>