Skip to content

Instantly share code, notes, and snippets.

@nitaliano
Last active April 6, 2016 19:50
Show Gist options
  • Save nitaliano/364548b974c37b8821d494333240c595 to your computer and use it in GitHub Desktop.
Save nitaliano/364548b974c37b8821d494333240c595 to your computer and use it in GitHub Desktop.
import React from 'react';
import App from './components/App';
import WeatherList from './components/WeatherList';
import WeatherDetails from './components/WeatherDetails';
import { Route, IndexRoute } from 'react-router';
const routes = (
<Route path="/" component={App}>
<IndexRoute component={WeatherList} />
<Route path="details" component={WeatherDetails} />
</Route>
);
export default routes;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment