1 |
675bbb8c
|
hlavja
|
import { NgModule } from '@angular/core';
|
2 |
|
|
import { CommonModule } from '@angular/common';
|
3 |
|
|
import { DashboardComponent } from './components/dashboard.component';
|
4 |
|
|
import {NavBarModule} from '../shared/nav-bar/nav-bar.module';
|
5 |
8c28e5ab
|
hlavja
|
import {RouterModule} from '@angular/router';
|
6 |
|
|
import {ButtonModule} from 'primeng/button';
|
7 |
bb7795cd
|
hlavja
|
import {AccordionModule} from 'primeng/accordion';
|
8 |
|
|
import { SensorsComponent } from './components/sensors/sensors.component';
|
9 |
|
|
import { UnitPopupComponent } from './components/unit-popup/unit-popup.component';
|
10 |
|
|
import {DialogModule} from 'primeng/dialog';
|
11 |
|
|
import { SensorPopupComponent } from './components/sensor-popup/sensor-popup.component';
|
12 |
675bbb8c
|
hlavja
|
|
13 |
|
|
|
14 |
|
|
|
15 |
|
|
@NgModule({
|
16 |
bb7795cd
|
hlavja
|
declarations: [DashboardComponent, SensorsComponent, UnitPopupComponent, SensorPopupComponent],
|
17 |
675bbb8c
|
hlavja
|
imports: [
|
18 |
|
|
CommonModule,
|
19 |
8c28e5ab
|
hlavja
|
NavBarModule,
|
20 |
|
|
RouterModule,
|
21 |
bb7795cd
|
hlavja
|
ButtonModule,
|
22 |
|
|
AccordionModule,
|
23 |
|
|
DialogModule
|
24 |
675bbb8c
|
hlavja
|
]
|
25 |
|
|
})
|
26 |
|
|
export class DashboardModule { }
|