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
+16
View File
@@ -0,0 +1,16 @@
import { formDataActionTypes } from "./action";
const formDataInitialState = {
formData: {},
};
export default function reducer(state = formDataInitialState, action) {
switch (action.type) {
case formDataActionTypes.SETFORMDATA:
return {
formData: action.formData,
};
default:
return state;
}
}