const i18nReducer = (state = {}, action) => { switch(action.type) { case 'i18n_set_ctx': return action.i18n; default: return state; } } export default i18nReducer;