Projekt

Obecné

Profil

Stáhnout (891 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
import { NgModule } from '@angular/core';
2
import { CommonModule } from '@angular/common';
3
import { ProfileSettingsComponent } from './profile-settings.component';
4
import {
5
  MatButtonModule,
6
  MatCheckboxModule,
7
  MatDialogModule,
8
  MatDatepickerModule,
9
  MatFormFieldModule, MatInputModule
10
} from '@angular/material';
11
import {FormsModule} from '@angular/forms';
12
import {NgbModule} from '@ng-bootstrap/ng-bootstrap';
13
import {SharedModule} from '../shared/shared.module';
14

    
15

    
16
@NgModule({
17
  declarations: [ProfileSettingsComponent],
18
  imports: [
19
    CommonModule,
20
    MatButtonModule,
21
    MatDialogModule,
22
    MatCheckboxModule,
23
    FormsModule,
24
    MatDatepickerModule,
25
    MatFormFieldModule,
26
    MatInputModule,
27
    NgbModule,
28
    SharedModule
29
  ],
30
  entryComponents: [
31
    ProfileSettingsComponent
32
  ],
33
  exports: [
34
    ProfileSettingsComponent
35
  ]
36
})
37
export class ProfileSettingsModule { }
(4-4/4)