import { govGatweayActionTypes } from "./action"; const govGatewayConfigInitialState = { config: {}, }; export default function reducer(state = govGatewayConfigInitialState, action) { switch (action.type) { case govGatweayActionTypes.GETPROVIDERCONFIG: return { ...state, config: action.config, }; default: return state; } }