Skip to content

Instantly share code, notes, and snippets.

@10xjs
10xjs / name.js
Last active November 2, 2015 05:58
export function name(name) {
return enhancer => next => (reducer, initialState) => {
return {
...enhancer(next)(reducer, initialState),
name,
};
};
}
export function normalize(store) {