UNPKG

jqwidgets-framework

Version:

jQWidgets is an advanced Angular, Vue, Blazor, React, Web Components, jquery, ASP .NET MVC, Custom Elements and HTML5 UI framework.

27 lines (21 loc) 849 B
import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { FormsModule } from '@angular/forms'; import { CommonModule } from '@angular/common'; import { AppComponent } from './app.component'; import { jqxChartModule } from 'jqwidgets-ng/jqxchart'; import { jqxButtonModule } from 'jqwidgets-ng/jqxbuttons'; import { jqxInputModule } from 'jqwidgets-ng/jqxinput'; import { jqxDropDownListModule } from 'jqwidgets-ng/jqxdropdownlist'; import { jqxListBoxModule } from 'jqwidgets-ng/jqxlistbox'; @NgModule({ declarations: [ AppComponent ], imports: [ BrowserModule, FormsModule, CommonModule, jqxChartModule, jqxButtonModule, jqxInputModule, jqxDropDownListModule, jqxListBoxModule ], providers: [], bootstrap: [AppComponent] }) export class AppModule { }