Guest User

Untitled

a guest
Dec 11th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. export default waitMWare => () => (
  2. next => action => {
  3. if (action.wait) {
  4. setTimeout(() => next(action), action.wait)
  5. } else {
  6. return next(action)
  7. }
  8. }
  9. )
  10.  
  11. dispatch(openModal({type: 'OPEN_MODAL', wait: 5000}))
Add Comment
Please, Sign In to add comment