-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.component.ts
43 lines (37 loc) · 1.03 KB
/
app.component.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
/**
* Angular 2 decorators and services
*/
import { Component, OnInit, ViewEncapsulation } from '@angular/core';
import { AppState } from './app.service';
import { UserService } from './core/services';
export const ROOT_SELECTOR = 'app';
/**
* App Component
* Top Level Component
*/
@Component({
selector: ROOT_SELECTOR,
encapsulation: ViewEncapsulation.None,
template: `
<main>
<router-outlet></router-outlet>
</main>
`
})
export class AppComponent implements OnInit {
public name = 'Choicery';
constructor(
public appState: AppState,
public userService: UserService
) {}
public ngOnInit() {
this.userService.populate();
}
}
/**
* Please review the https://github.com/AngularClass/angular-examples/ repo for
* more angular app examples that you may copy/paste
* (The examples may not be updated as quickly. Please open an issue on github for us to update it)
* For help or questions please contact us at @AngularClass on twitter
* or our chat on Slack at https://AngularClass.com/slack-join
*/