Created
December 30, 2016 11:49
-
-
Save sseletskyy/5dac4cb639f683445f9a9900361c1514 to your computer and use it in GitHub Desktop.
Redux Reducer Template
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 * as types from '../actions/actionTypes' | |
import initialState from './initialState' | |
export default function $NAME(state = initialState.$NAME, action) { | |
switch (action.type) { | |
case types.: | |
return state; | |
default: | |
return state; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment