Mise en place structure frontend

This commit is contained in:
2020-06-15 18:10:06 +02:00
parent af47331223
commit 7f7b187296
30 changed files with 11009 additions and 2 deletions

View File

@ -0,0 +1,7 @@
export const LOGOUT_REQUEST = "LOGOUT_REQUEST";
export const LOGOUT_SUCCESS = "LOGOUT_SUCCESS";
export const LOGOUT_FAILURE = "LOGOUT_FAILURE";
export function logout() {
return { type: LOGOUT_REQUEST };
};