Skip to content

Instantly share code, notes, and snippets.

@AllGistsEqual
Created April 25, 2021 21:03
Show Gist options
  • Save AllGistsEqual/299b3dc348a9f66fc57556eb0f3dbae1 to your computer and use it in GitHub Desktop.
Save AllGistsEqual/299b3dc348a9f66fc57556eb0f3dbae1 to your computer and use it in GitHub Desktop.
export const attemptLogin = createAction(
'[USER] attempt Login',
(email: string, password: string) => ({
payload: {
email,
password,
},
}),
)
export const attemptSignUp = createAction(
'[USER] attempt SignUp',
(email: string, password: string) => ({
payload: {
email,
password,
},
}),
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment