Advertisement
Guest User

Untitled

a guest
Mar 24th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. const actions = {
  2. stocks: {
  3. fetchStocks: () => ....
  4. },
  5. someOtherStore: {
  6. someOtherAction: () => ....
  7. }
  8. }
  9.  
  10. const store = {
  11. stocks: {
  12. isLoading: false,
  13. data: null,
  14. errorMessage: ''
  15. },
  16. someOtherStore: {
  17. someOtherStateValue: ''
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement