UNPKG

jqwidgets-framework

Version:

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

20 lines (16 loc) 506 B
import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { FormsModule } from '@angular/forms' import { AppComponent } from './app.component'; import { jqxNumberInputModule } from 'jqwidgets-ng/jqxnumberinput'; @NgModule({ declarations: [ AppComponent ], imports: [ BrowserModule, FormsModule, jqxNumberInputModule ], providers: [], bootstrap: [AppComponent] }) export class AppModule { }