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 { UnitInsertPopupComponent } from './components/unit-insert-popup/unit-insert-popup.component';
|
13 |
|
|
import {ReactiveFormsModule} from '@angular/forms';
|
14 |
675bbb8c
|
hlavja
|
|
15 |
|
|
|
16 |
|
|
|
17 |
|
|
@NgModule({
|
18 |
a3ae1cab
|
hlavja
|
declarations: [DashboardComponent, SensorsComponent, UnitPopupComponent, SensorPopupComponent, UnitInsertPopupComponent],
|
19 |
675bbb8c
|
hlavja
|
imports: [
|
20 |
|
|
CommonModule,
|
21 |
8c28e5ab
|
hlavja
|
NavBarModule,
|
22 |
|
|
RouterModule,
|
23 |
bb7795cd
|
hlavja
|
ButtonModule,
|
24 |
|
|
AccordionModule,
|
25 |
a3ae1cab
|
hlavja
|
DialogModule,
|
26 |
|
|
ReactiveFormsModule
|
27 |
675bbb8c
|
hlavja
|
]
|
28 |
|
|
})
|
29 |
|
|
export class DashboardModule { }
|