Skip to content

Instantly share code, notes, and snippets.

@callmephilip
Created May 18, 2016 15:52
Show Gist options
  • Save callmephilip/57765aff6bde6ddb0000d17254033c41 to your computer and use it in GitHub Desktop.
Save callmephilip/57765aff6bde6ddb0000d17254033c41 to your computer and use it in GitHub Desktop.
import globalNavigation from './components/GlobalNavigation/reducer';
import tabs from './components/ApplicationTabs/reducer';
import feed from './components/Feed/reducer';
import { combineReducers } from 'redux-immutable';
const applicationReducers = {
globalNavigation,
tabs,
feed
};
export default function createReducer() {
return combineReducers(applicationReducers);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment