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 |
a3ae1cab
|
hlavja
|
import {ReactiveFormsModule} from '@angular/forms';
|
13 |
533869de
|
hlavja
|
import { SensorInsertPopupComponent } from './components/sensor-insert-popup/sensor-insert-popup.component';
|
14 |
ea0e5344
|
hlavja
|
import {ConfirmDialogModule} from 'primeng/confirmdialog';
|
15 |
c835a12d
|
hlavja
|
import {SplitButtonModule} from 'primeng/splitbutton';
|
16 |
675bbb8c
|
hlavja
|
|
17 |
|
|
|
18 |
|
|
|
19 |
|
|
@NgModule({
|
20 |
278f83f2
|
Lukáš Moučka
|
declarations: [DashboardComponent, SensorsComponent, UnitPopupComponent, SensorPopupComponent, SensorInsertPopupComponent],
|
21 |
675bbb8c
|
hlavja
|
imports: [
|
22 |
|
|
CommonModule,
|
23 |
8c28e5ab
|
hlavja
|
NavBarModule,
|
24 |
|
|
RouterModule,
|
25 |
bb7795cd
|
hlavja
|
ButtonModule,
|
26 |
|
|
AccordionModule,
|
27 |
a3ae1cab
|
hlavja
|
DialogModule,
|
28 |
ea0e5344
|
hlavja
|
ReactiveFormsModule,
|
29 |
c835a12d
|
hlavja
|
ConfirmDialogModule,
|
30 |
|
|
SplitButtonModule
|
31 |
675bbb8c
|
hlavja
|
]
|
32 |
|
|
})
|
33 |
|
|
export class DashboardModule { }
|