Face_Classify_frontend/app/src/actions/isLogin/index.js
2022-01-14 12:00:02 +07:00

16 lines
276 B
JavaScript

export const LOGIN = 'LOGIN';
export const LOGOUT = 'LOGOUT';
export function login(access_token){
return {
type: LOGIN,
payload:{
access_token: access_token
}
}
}
export function logout(){
return {
type: LOGOUT
}
}