UNPKG

jqwidgets-framework

Version:

jQWidgets is an advanced jQuery, Angular, React, ASP .NET MVC, Custom Elements and HTML5 UI framework.

14 lines (12 loc) 531 B
import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { CommonModule } from '@angular/common'; import { FormsModule } from '@angular/forms'; import { AppComponent } from './app.component'; import { PasswordInputModule } from '../../modules/passwordinput.module'; @NgModule({ imports: [BrowserModule, CommonModule, FormsModule, PasswordInputModule], declarations: [AppComponent], bootstrap: [AppComponent] }) export class AppModule { }