Skip to content

Instantly share code, notes, and snippets.

@callmephilip
Created June 8, 2016 15:57
Show Gist options
  • Save callmephilip/9559094b1d447613c14c4c07f239468f to your computer and use it in GitHub Desktop.
Save callmephilip/9559094b1d447613c14c4c07f239468f to your computer and use it in GitHub Desktop.
// app/reducers.js
import { combineReducers } from 'redux-immutable';
// XX: Do not rename this variable if you want reducer generator
// to keep working properly (and you do want that, right?)
const applicationReducers = {
removeThisReducerOnceYouAddALegitOne: () => ({}),
};
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