import { NgModule } from '@angular/core'; import { BoxPlotWithLineComponent } from './box-plot-with-line.component'; @NgModule({ imports: [ ], declarations: [BoxPlotWithLineComponent], exports: [BoxPlotWithLineComponent] }) export class BoxPlotWithLineModule { }