import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { AppComponent } from './app.component'; import { ChartModule } from "./chart-module/index"; import { MultiLineChartComponent } from './chart-module/multi-line-chart/multi-line-chart.component'; @NgModule({ declarations: [ AppComponent ], imports: [ BrowserModule, ChartModule ], providers: [], bootstrap: [AppComponent] }) export class AppModule { }