All files / src/app/dashboard dashboard.module.ts

100% Statements 15/15
100% Branches 0/0
100% Functions 1/1
100% Lines 12/12
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 361x 1x   1x 1x   1x 1x 1x 1x 1x 1x 1x                                           1x  
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
// import { MaterialModule } from '@angular/material';
import { MatCardModule } from '@angular/material';
import { RouterModule } from '@angular/router';
 
import { DashboardComponent } from './dashboard.component';
import { DashboardThumbnailComponent } from './dashboard-thumbnail';
import { MeasureService } from './measure.service';
import { MeasureActions } from './measure.actions';
import { MigrationWorkBenchCommonModule } from '../common/mw.common.module';
import { SparklineComponent } from '../graphs/sparkline/sparkline.component';
import { ServicesModule } from '../services/services.module';
 
@NgModule({
  imports: [
    CommonModule,
    RouterModule,
    // MaterialModule,
    MatCardModule,
    MigrationWorkBenchCommonModule,
    ServicesModule,
  ],
  declarations: [
    DashboardComponent,
    DashboardThumbnailComponent,
    SparklineComponent,
    // MatCard,
  ],
  providers: [
    MeasureService,
    MeasureActions,
  ],
})
export class DashboardModule {}