Projet

Général

Profil

Paste
Statistiques
| Branche: | Révision:

root / src / app / app.module.ts @ 72203b19

Historique | Voir | Annoter | Télécharger (731 octets)

1 f3d5fa3b Eric Seigne
import { NgModule, NO_ERRORS_SCHEMA } from "@angular/core";
2
import { NativeScriptModule } from "nativescript-angular/nativescript.module";
3
import { NativeScriptUISideDrawerModule } from "nativescript-ui-sidedrawer/angular";
4
import { TNSCheckBoxModule } from '@nstudio/nativescript-checkbox/angular';
5
6
import { AppRoutingModule } from "./app-routing.module";
7
import { AppComponent } from "./app.component";
8
9
@NgModule({
10
    bootstrap: [
11
        AppComponent
12
    ],
13
    imports: [
14
        AppRoutingModule,
15
        NativeScriptModule,
16
        NativeScriptUISideDrawerModule,
17
        TNSCheckBoxModule,
18
    ],
19
    declarations: [
20
        AppComponent
21
    ],
22
    schemas: [
23
        NO_ERRORS_SCHEMA
24
    ]
25
})
26
export class AppModule { }
Redmine Appliance - Powered by TurnKey Linux