Last active
April 3, 2019 23:32
-
-
Save alex-okrushko/506d5ac155d8e4ee2a8d6df26623791a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Action to log in the User from the Login Page. | |
* Uses the most secure password by default. | |
*/ | |
export const login = createAction( | |
'[Login Page] Login', | |
(username: string, password = 'p@ssw0rdLol') => ({username, password}), | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment