Guest User

Untitled

a guest
Apr 25th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. .mergeMap(async (action) => {
  2. const title = await Api.get(action.payload.id);
  3. return {
  4. type: RECEIVED_TITLES
  5. payload: {
  6. title
  7. }
  8. };
  9. })
Add Comment
Please, Sign In to add comment