- implement actions section

This commit is contained in:
Amruth Pillai
2020-07-10 13:40:48 +05:30
parent 89fa8236e8
commit a8c5d29858
23 changed files with 304 additions and 167 deletions

View File

@ -90,6 +90,11 @@ const ResumeProvider = ({ children }) => {
debouncedUpdateResume(newState);
return newState;
case 'on_import':
newState = { id: state.id, ...payload };
debouncedUpdateResume(newState);
return newState;
case 'set_data':
return payload;