@pixi/react
Version:
Write PixiJS applications using React declarative style.
15 lines (11 loc) • 336 B
JavaScript
;
var store = require('../store.js');
var unmountRoot = require('./unmountRoot.js');
;
function processUnmountQueue() {
for (const root of store.store.unmountQueue) {
unmountRoot.unmountRoot(root);
}
}
exports.processUnmountQueue = processUnmountQueue;
//# sourceMappingURL=processUnmountQueue.js.map