Advertisement
Guest User

Untitled

a guest
Sep 19th, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. // Before
  2. static normalAction() {
  3. return {
  4. type: SomeAction.NORMAL_ACTION,
  5. }
  6. }
  7.  
  8. // After
  9. static normalAction() {
  10. return ActionUtility.createAction(SomeAction.NORMAL_ACTION);
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement