Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame^] | 1 | import { Component, Inject } from '@angular/core'; |
2 | import { AuthenticationService } from './services/authentication.service'; | ||||
3 | |||||
4 | @Component({ | ||||
5 | selector: 'app-root', | ||||
6 | templateUrl: './app.component.html', | ||||
7 | styleUrls: ['./app.component.css'] | ||||
8 | }) | ||||
9 | export class AppComponent { | ||||
10 | |||||
11 | constructor(auth:AuthenticationService){ | ||||
12 | |||||
13 | } | ||||
14 | |||||
15 | } |