UNPKG

jqwidgets-framework

Version:

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

16 lines (11 loc) 465 B
import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { CommonModule } from '@angular/common'; import { BulletChartModule } from '../../modules/bulletchart.module'; import { AppComponent } from './app.component'; @NgModule({ imports: [BrowserModule, CommonModule, BulletChartModule], declarations: [AppComponent], bootstrap: [AppComponent] }) export class AppModule { }