root / src / app / settings / settings.module.ts @ fc64f1a2
Historique | Voir | Annoter | Télécharger (491 octets)
1 |
import { NgModule, NO_ERRORS_SCHEMA } from "@angular/core"; |
---|---|
2 |
import { NativeScriptCommonModule } from "nativescript-angular/common"; |
3 |
|
4 |
import { SettingsRoutingModule } from "./settings-routing.module"; |
5 |
import { SettingsComponent } from "./settings.component"; |
6 |
|
7 |
@NgModule({ |
8 |
imports: [ |
9 |
NativeScriptCommonModule, |
10 |
SettingsRoutingModule |
11 |
], |
12 |
declarations: [ |
13 |
SettingsComponent |
14 |
], |
15 |
schemas: [ |
16 |
NO_ERRORS_SCHEMA |
17 |
] |
18 |
}) |
19 |
export class SettingsModule { } |