UNPKG

react-redux-feature-flags

Version:

Feature flagging React component with Redux store

12 lines (8 loc) 274 B
export const ADD_FEATURE_FLAGS = '@@feature-flags/ADD_FEATURE_FLAG' const initialState = {} export function featureFlagsReducer(state = initialState, { type, features } = {}) { if (type === ADD_FEATURE_FLAGS) { return { ...state, ...features } } return state }