UNPKG

jqwidgets-framework

Version:

jQWidgets is an advanced jQuery, Angular, React, ASP .NET MVC, Custom Elements and HTML5 UI framework.

22 lines (16 loc) 479 B
import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { AppComponent } from './app.component'; import { ComboBoxModule } from '../../modules/combobox.module'; import { PanelModule } from '../../modules/panel.module'; @NgModule({ declarations: [ AppComponent ], imports: [ BrowserModule, ComboBoxModule, PanelModule ], providers: [], bootstrap: [AppComponent] }) export class AppModule { }