Skip to content

Instantly share code, notes, and snippets.

@sseletskyy
Created December 30, 2016 11:49
Show Gist options
  • Save sseletskyy/5dac4cb639f683445f9a9900361c1514 to your computer and use it in GitHub Desktop.
Save sseletskyy/5dac4cb639f683445f9a9900361c1514 to your computer and use it in GitHub Desktop.
Redux Reducer Template
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