2017-06-13 20:27:11 +03:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
import { NgaTabsetModule } from '@nga/theme';
|
|
|
|
|
|
|
|
|
|
import { SharedModule } from '../../shared.module';
|
|
|
|
|
import { DashboardComponent } from './dashboard.component';
|
|
|
|
|
import { StatusCardsComponent } from './status-cards/status-cards.component';
|
2017-06-22 12:07:42 +03:00
|
|
|
import { TemperatureDraggerComponent } from './temperature-dragger/temperature-dragger.component';
|
2017-06-13 20:27:11 +03:00
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
|
|
|
|
SharedModule,
|
|
|
|
|
NgaTabsetModule,
|
|
|
|
|
],
|
|
|
|
|
declarations: [
|
|
|
|
|
DashboardComponent,
|
|
|
|
|
StatusCardsComponent,
|
2017-06-22 12:07:42 +03:00
|
|
|
TemperatureDraggerComponent,
|
2017-06-13 20:27:11 +03:00
|
|
|
],
|
|
|
|
|
})
|
|
|
|
|
export class DashboardModule { }
|