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 (17 loc) 584 B
import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { CommonModule } from '@angular/common'; import { AppComponent } from './app.component'; import { jqxGaugeModule } from 'jqwidgets-ng/jqxgauge'; import { jqxLinearGaugeModule } from 'jqwidgets-ng/jqxlineargauge'; @NgModule({ declarations: [ AppComponent ], imports: [ BrowserModule, CommonModule, jqxGaugeModule, jqxLinearGaugeModule ], providers: [], bootstrap: [AppComponent] }) export class AppModule { }