import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { SharedModule } from '../shared/shared.module'; import { LightningDashboardComponent } from './lightning-dashboard/lightning-dashboard.component'; import { LightningApiService } from './lightning-api.service'; import { NodesListComponent } from './nodes-list/nodes-list.component'; import { RouterModule } from '@angular/router'; import { NodeStatisticsComponent } from './node-statistics/node-statistics.component'; @NgModule({ declarations: [ LightningDashboardComponent, NodesListComponent, NodeStatisticsComponent, ], imports: [ CommonModule, SharedModule, RouterModule, ], providers: [ LightningApiService, ] }) export class LightningModule { }