class JQuery {
    constructor() {
        this.controller = UcpComponentSupport.lookup("JQuery").controller;
        this.controller.singleton = this;
    }

    init(controller) {
        UcpComponentSupport.importScript(this.controller.basePath + "dist/jquery.min.js",
            () => { this.singleton = $ }
        );
        return this;
    }

}

new JQuery();
