-
-
Save olslash/abd7177efa3edb1ae2849fb7a6d714df to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { createReducer } from 'helpers/redux'; | |
// import { } from 'lodash'; | |
export const namespace = '$NS$'; | |
const ACTION = 'nc/$NS$/ACTION'; | |
const defaultState = { | |
}; | |
const reducer = createReducer(defaultState, { | |
}); | |
export default reducer; | |
function local(state) { | |
return state[namespace]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment