UNPKG

taffy-coustom-ui

Version:
21 lines (17 loc) 564 B
import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { FormsModule } from '@angular/forms'; import { AppComponent } from './app.component'; import { jqxMaskedInputModule } from 'jqwidgets-ng/jqxmaskedinput'; import { jqxButtonModule } from 'jqwidgets-ng/jqxbuttons'; @NgModule({ declarations: [ AppComponent ], imports: [ BrowserModule, FormsModule, jqxMaskedInputModule, jqxButtonModule ], providers: [], bootstrap: [AppComponent] }) export class AppModule { }