How to use the esp-js-ui.SystemContainerConfiguration.configureContainer function in esp-js-ui

To help you get started, we’ve selected a few esp-js-ui examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github esp / esp-js / packages / esp-js-ui / examples / module-based-app / src / shell / shellBootstrapper.tsx View on Github external
start() {
        this._container = new Container();
        SystemContainerConfiguration.configureContainer(this._container);
        this._configureContainer();
        this._displayShell();
    }
github esp / esp-js / examples / esp-js-ui-module-based-app / src / shell / shellBootstrapper.tsx View on Github external
constructor() {
        this._container = new Container();
        SystemContainerConfiguration.configureContainer(this._container);
        this._configureContainer();
        this._container.resolve(SystemContainerConst.router).enableDiagnosticLogging = true;
        this._rootElement = this._createRootElement();
    }