import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { AppComponent } from './app.component'; import { SettingsComponent } from './settings/settings.component'; import { OverviewWindowComponent } from './overview-window/overview-window.component'; import * as PlotlyJS from 'plotly.js/dist/plotly.js'; import { PlotlyModule } from 'angular-plotly.js'; import {FormsModule} from '@angular/forms'; import { LabelingWindowComponent } from './labeling-window/labeling-window.component'; import { TableOverviewComponent } from './table-overview/table-overview.component'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import {MatTabsModule} from '@angular/material/tabs'; import { LabelsComponent } from './labels/labels.component'; import { QueryWindowComponent } from './query-window/query-window.component'; import {ZingchartAngularModule} from 'zingchart-angular'; PlotlyModule.plotlyjs = PlotlyJS; @NgModule({ declarations: [ AppComponent, SettingsComponent, OverviewWindowComponent, LabelingWindowComponent, TableOverviewComponent, LabelsComponent, QueryWindowComponent, ], imports: [ BrowserModule, FormsModule, PlotlyModule, BrowserAnimationsModule, MatTabsModule, ZingchartAngularModule ], providers: [], bootstrap: [AppComponent] }) export class AppModule { }