UNPKG

jqwidgets-framework

Version:

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

20 lines (16 loc) 493 B
import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { AppComponent } from './app.component'; import { TreeModule } from '../../modules/tree.module'; import { ExpanderModule } from '../../modules/expander.module'; @NgModule({ declarations: [ AppComponent ], imports: [ BrowserModule, TreeModule, ExpanderModule ], providers: [], bootstrap: [AppComponent] }) export class AppModule { }