Projekt

Obecné

Profil

Stáhnout (541 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 370c3423 hlavja
import { NgModule } from '@angular/core';
2
import { CommonModule } from '@angular/common';
3
import { UnitComponent } from './components/unit.component';
4
import {NavBarModule} from '../shared/nav-bar/nav-bar.module';
5
import {CalendarModule} from 'primeng/calendar';
6
import {FormsModule} from '@angular/forms';
7
import {ListboxModule} from 'primeng/listbox';
8
9
10
11
@NgModule({
12
  declarations: [UnitComponent],
13
  imports: [
14
    CommonModule,
15
    NavBarModule,
16
    CalendarModule,
17
    FormsModule,
18
    ListboxModule
19
  ]
20
})
21
export class UnitModule { }