Home Reference Source Repository

src/app/core/application/application.js

import { menu } from "../../core/application/menu";
export class Application {
  constructor() {
    this.stages = [];
    this.actions = [];
    this.menu = menu;
  }
  bootstrap() {}
  registryComponent(component) {
    menu.add(component);
  }
}