Created
February 25, 2017 09:39
-
-
Save alex35mil/de6c9702f6c2bfb04c83c3613b906305 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
/* reducer.js */ | |
import state from './state'; | |
import { onModalShow, onModalHide } from './interactions/modalToggle'; | |
// ... | |
export default createReducer(state, { | |
...onModalShow, | |
...onModalHide, | |
...onMapZoomLevelUpdate, | |
...onFormStateUpdate, | |
...onServerStateUpdate, | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment