Skip to content

Instantly share code, notes, and snippets.

@mentix02
Created December 1, 2020 23:46
Show Gist options
  • Save mentix02/63d018a2e6e6240bcff0167b7e77dea8 to your computer and use it in GitHub Desktop.
Save mentix02/63d018a2e6e6240bcff0167b7e77dea8 to your computer and use it in GitHub Desktop.
import { LOGIN, LOGOUT, LoginAction, LogoutAction } from "./types";
export const logIn = (token: string, username: string): LoginAction => ({
type: LOGIN,
payload: { token, username },
});
export const logOut = (): LogoutAction => ({
type: LOGOUT,
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment