updated api mocks and new appeal pages

This commit is contained in:
2021-07-07 12:53:07 +01:00
parent 6fe41c209e
commit c1e69c945f
24 changed files with 17397 additions and 3025 deletions
+18
View File
@@ -0,0 +1,18 @@
export const formDataActionTypes = {
GETFORMDATA: "GETFORMDATA",
SETFORMDATA: "SETFORMDATA",
UPDATEFORMDATA: "UPDATEFORMDATA",
};
export const getFormObj = () => (dispatch) => {
return dispatch({
type: formDataActionTypes.GETFORMDATA,
});
};
export const setForm = (formData) => (dispatch) => {
return dispatch({
type: formDataActionTypes.SETFORMDATA,
formData: formData,
});
};