lbry-desktop/ui/util/batch-actions.js
zeppi ee9f63a161 integrate all the things
bugfix

wip

flow

fix

cleaning

clean
2021-10-15 23:49:41 -04:00

8 lines
148 B
JavaScript

// https://github.com/reactjs/redux/issues/911
export function batchActions(...actions) {
return {
type: 'BATCH_ACTIONS',
actions,
};
}