Guest User

Untitled

a guest
Dec 7th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. login reducer state:
  2. {
  3. loginForm: {
  4. email: "",
  5. success: "",
  6. errors: {
  7. key: "",
  8. value: "",
  9. },
  10. },
  11. pageHomeHeader: {
  12. isMenuActive: true,
  13. },
  14. }
  15.  
  16. contact reducer state:
  17. {
  18. contactForm: {
  19. email: "",
  20. name: "",
  21. message: "",
  22. success: "",
  23. errors: {
  24. key: "",
  25. value: "",
  26. },
  27. },
  28. }
  29.  
  30. verification reducer state:
  31. {
  32. authentication: {
  33. started: Timestamp,
  34. isLoading: true,
  35. isRedirecting: true,
  36. success: "",
  37. errors: {
  38. key: "",
  39. value: "",
  40. },
  41. },
  42. currentUser: {
  43. id: 1,
  44. email: "",
  45. tokenAccess: "",
  46. },
  47. }
Add Comment
Please, Sign In to add comment