UNPKG

jqwidgets-framework

Version:

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

19 lines (12 loc) 536 B
import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { CommonModule } from '@angular/common'; import { FormsModule } from '@angular/forms'; import { jqxSwitchButtonModule } from 'jqwidgets-ng/jqxswitchbutton'; import { AppComponent } from './app.component'; @NgModule({ imports: [BrowserModule, CommonModule, FormsModule, jqxSwitchButtonModule], declarations: [AppComponent], bootstrap: [AppComponent] }) export class AppModule { }