1import { batch } from 'react-redux'
2
3function myThunk() {
4 return (dispatch, getState) => {
5 // should only result in one combined re-render, not two
6 batch(() => {
7 dispatch(increment())
8 dispatch(increment())
9 })
10 }
11}
12