UNPKG

jqwidgets-framework

Version:

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

26 lines (19 loc) 791 B
import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { AppComponent } from './app.component'; import { jqxButtonModule } from 'jqwidgets-ng/jqxbuttons'; import { jqxCheckBoxModule } from 'jqwidgets-ng/jqxcheckbox'; import { jqxRadioButtonModule } from 'jqwidgets-ng/jqxradiobutton'; import { jqxDropDownButtonModule } from 'jqwidgets-ng/jqxdropdownbutton'; import { jqxSwitchButtonModule } from 'jqwidgets-ng/jqxswitchbutton'; @NgModule({ declarations: [ AppComponent ], imports: [ BrowserModule, jqxButtonModule, jqxCheckBoxModule, jqxRadioButtonModule, jqxDropDownButtonModule, jqxSwitchButtonModule ], providers: [], bootstrap: [AppComponent] }) export class AppModule { }