dispatchZindex.js 99 B

12345678
  1. let zIndex = 1000;
  2. function zIndexIncrease() {
  3. zIndex++;
  4. }
  5. export {zIndex, zIndexIncrease};