Projekt

Obecné

Profil

Stáhnout (819 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

    
14

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