index.ts 288 B

1234567891011
  1. import { editorActions } from "./editor";
  2. import { materialActions } from "./material";
  3. import { promotionAction } from "./promotion";
  4. import { collectionAction } from "./collection";
  5. export const actions = [
  6. editorActions,
  7. materialActions,
  8. promotionAction,
  9. collectionAction,
  10. ];