Skip to content

Instantly share code, notes, and snippets.

@alex35mil
Last active February 26, 2017 17:52
Show Gist options
  • Save alex35mil/142deb970346a62607dbda0cbb8819fa to your computer and use it in GitHub Desktop.
Save alex35mil/142deb970346a62607dbda0cbb8819fa to your computer and use it in GitHub Desktop.
/* ui/unit/reducer.js */
import { onServerStateUpdate } from './interactions/serverStateUpdate';
export default createReducer(state, {
...onServerStateUpdate,
});
/* data/entities/reducer.js */
import { updateEntityOnEdit } from '../ui/unit/interactions/serverStateUpdate';
export default createReducer(state, {
...updateEntityOnEdit,
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment