Advertisement
Guest User

Untitled

a guest
Apr 16th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. /** Action to log in the User from the Login Page */
  2. export const login = createAction(
  3. '[Login Page] Login',
  4. // notice 👇 payload wrapping
  5. props<{payload: {username: string; password: string;}}>(),
  6. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement