application.js 249 B

123456789101112
  1. import { menu } from "../../core/application/menu";
  2. export class Application {
  3. constructor() {
  4. this.stages = [];
  5. this.actions = [];
  6. this.menu = menu;
  7. }
  8. bootstrap() {}
  9. registryComponent(component) {
  10. menu.add(component);
  11. }
  12. }