client/src/actions/authActions.js
changeset 52 96f8a4a59bd9
parent 44 3b20e2b584fe
child 89 06f609adfbf8
equal deleted inserted replaced
51:08d46c730397 52:96f8a4a59bd9
     5     type: types.AUTH_LOGIN_SUBMIT,
     5     type: types.AUTH_LOGIN_SUBMIT,
     6     username,
     6     username,
     7     password
     7     password
     8   };
     8   };
     9 }
     9 }
       
    10 
       
    11 export const logout = () => {
       
    12   return {
       
    13     type: types.AUTH_LOGOUT
       
    14   };
       
    15 }