UNPKG

jqwidgets-framework

Version:

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

24 lines (21 loc) 895 B
import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { AppComponent } from './app.component'; import { jqxGridModule } from 'jqwidgets-ng/jqxgrid'; import { jqxRadioButtonModule } from 'jqwidgets-ng/jqxradiobutton'; import { jqxInputModule } from 'jqwidgets-ng/jqxinput'; import { jqxNumberInputModule } from 'jqwidgets-ng/jqxnumberinput'; import { jqxDropDownListModule } from 'jqwidgets-ng/jqxdropdownlist'; import { jqxDateTimeInputModule } from 'jqwidgets-ng/jqxdatetimeinput'; @NgModule({ declarations: [ AppComponent ], imports: [ BrowserModule, CommonModule, jqxGridModule, jqxRadioButtonModule, jqxDateTimeInputModule, jqxInputModule, jqxNumberInputModule, jqxDropDownListModule ], providers: [], bootstrap: [AppComponent] }) export class AppModule { }