UNPKG

jqwidgets-framework

Version:

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

25 lines (19 loc) 730 B
import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { FormsModule } from '@angular/forms'; import { AppComponent } from './app.component'; import { jqxComplexInputModule } from 'jqwidgets-ng/jqxcomplexinput'; import { jqxButtonModule } from 'jqwidgets-ng/jqxbuttons'; import { jqxDropDownListModule } from 'jqwidgets-ng/jqxdropdownlist'; import { jqxExpanderModule } from 'jqwidgets-ng/jqxexpander'; @NgModule({ declarations: [ AppComponent ], imports: [ BrowserModule, FormsModule, jqxComplexInputModule, jqxButtonModule, jqxDropDownListModule, jqxExpanderModule ], providers: [], bootstrap: [AppComponent] }) export class AppModule { }