blob: 33f33048183f26291c309a182553ee04c8f4f52d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import { Component } from '@angular/core';
import { UserService } from './user/user.service';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
// never remove userService because we need it explicit constructing.
constructor(userService: UserService) { }
}
|