added logout status 404 page and registraiton pages

This commit is contained in:
2021-07-27 16:50:57 +01:00
parent 6520b761bd
commit 3a88b18f85
16 changed files with 1133 additions and 566 deletions
+6
View File
@@ -15,3 +15,9 @@ export const setAccountDetails = (accountDetails) => (dispatch) => {
accountDetails: accountDetails,
});
};
export const setLogout = () => (dispatch) => {
return dispatch({
type: "USER_LOGOUT",
});
};