UNPKG

coreui-react-starter

Version:

Open Source Bootstrap React Admin Template

18 lines (14 loc) 482 B
import React from 'react'; import { Router, Route, IndexRoute, hashHistory } from 'react-router'; // Containers import Full from './containers/Full/' // import Simple from './containers/Simple/' import Dashboard from './views/Dashboard/' export default ( <Router history={hashHistory}> <Route path="/" name="Home" component={Full}> <IndexRoute component={Dashboard}/> <Route path="dashboard" name="Dashboard" component={Dashboard}/> </Route> </Router> );