11 lines
262 B
JavaScript
11 lines
262 B
JavaScript
export const govGatweayActionTypes = {
|
|
GETPROVIDERCONFIG: "GETPROVIDERCONFIG",
|
|
};
|
|
|
|
export const getGovGatewayConfig = (config) => (dispatch) => {
|
|
return dispatch({
|
|
type: govGatweayActionTypes.GETPROVIDERCONFIG,
|
|
config: config,
|
|
});
|
|
};
|