UNPKG

citizenship_app_news

Version:

News module for Citizenship project application

14 lines (11 loc) 372 B
import * as Actions from '../ActionTypes' import initialStates from './initialStates' const IntroReducer = (state = initialStates.intro, action) => { switch (action.type) { case Actions.SHOW_INTRO_IN_START: return Object.assign({}, state, action.payload) default: return state } } export default IntroReducer