initial commit for welsh government planning appeals application
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
export const progressActionTypes = {
|
||||
GETPROGRESS: "GETPROGRESS",
|
||||
SETPROGRESS: "SETPROGRESS",
|
||||
UPDATEPROGRESS: "UPDATEPROGRESS",
|
||||
};
|
||||
|
||||
export const getProgressObj = () => (dispatch) => {
|
||||
return dispatch({
|
||||
type: progressActionTypes.GETPROGRESS,
|
||||
});
|
||||
};
|
||||
|
||||
export const setProgress = (progress) => (dispatch) => {
|
||||
return dispatch({
|
||||
type: progressActionTypes.SETPROGRESS,
|
||||
progressObj: progress,
|
||||
});
|
||||
};
|
||||
Reference in New Issue
Block a user