-
-
Notifications
You must be signed in to change notification settings - Fork 241
/
Copy pathshared.module.ts
47 lines (45 loc) · 1.6 KB
/
shared.module.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import { NgModule, NO_ERRORS_SCHEMA, ErrorHandler, NgModuleFactoryLoader } from "@angular/core";
// import { NativeScriptModule } from "nativescript-angular/nativescript.module";
// import { AppRoutingModule, COMPONENTS } from "./app.routing";
// import { AppComponent } from "./app.component";
import { NativeScriptCommonModule } from "nativescript-angular/common";
import { NativeScriptRouterModule } from "nativescript-angular/router";
import { DataService } from "./data.service";
import { HomeComponent } from "./home/home.component";
import { AboutComponent } from "./about/about.component";
import { AboutNestedComponent } from "./about/about-nested.component";
import { PlayerComponent } from "./player/players.component";
import { PlayerDetailComponent } from "./player/player-detail.component";
import { TeamsComponent } from "./team/teams.component";
import { TeamDetailComponent } from "./team/team-detail.component";
@NgModule({
imports: [
NativeScriptCommonModule,
NativeScriptRouterModule,
],
declarations: [
HomeComponent,
AboutComponent,
AboutNestedComponent,
PlayerComponent,
PlayerDetailComponent,
TeamsComponent,
TeamDetailComponent
],
exports: [
HomeComponent,
AboutComponent,
AboutNestedComponent,
PlayerComponent,
PlayerDetailComponent,
TeamsComponent,
TeamDetailComponent
],
schemas: [
NO_ERRORS_SCHEMA
]
})
/*
Pass your application module to the bootstrapModule function located in main.ts to start your app
*/
export class SharedModule { }