Skip to content

Instantly share code, notes, and snippets.

@codeaholicguy
Created December 25, 2016 16:46
Embed
What would you like to do?
import {combineReducers} from 'redux';
import {routerReducer} from 'react-router-redux';
import tracks from './tracks';
import auth from './auth';
export default combineReducers({
tracks,
auth,
routing: routerReducer
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment