prescottprue/gitsearch

View on GitHub
src/routes.js

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react' // eslint-disable-line
import { Route, IndexRoute, Router, browserHistory } from 'react-router'
import {
    App,
    Home,
    NotFound
  } from './containers'
export default () => (
  <Router history={browserHistory}>
    <Route path='/' component={App}>
      <IndexRoute component={Home} />
      <Route path='*' component={NotFound} />
    </Route>
  </Router>
)