Skip to content

Instantly share code, notes, and snippets.

@KensoDev
Created August 29, 2016 19:06
Show Gist options
  • Save KensoDev/e74f5b29c905daa73fa1f481acbbdc4c to your computer and use it in GitHub Desktop.
Save KensoDev/e74f5b29c905daa73fa1f481acbbdc4c to your computer and use it in GitHub Desktop.
import * as actionTypes from '../../constants/actionTypes';
const initialState = {
selected: 'Hotel',
}
export default function itemTypeReducer(state = initialState, action) {
if (action.type == actionTypes.SELECT_ITEM_TYPE) {
return {
selected: action.itemType
}
}
return state;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment