blob: 0499045a7937c35a53306fb5391493131e8f40bd [file] [log] [blame]
Michael Landoed64b5e2017-06-09 03:19:04 +03001import { Component, Inject } from '@angular/core';
2import { AuthenticationService } from './services/authentication.service';
3
4@Component({
5 selector: 'app-root',
6 templateUrl: './app.component.html',
7 styleUrls: ['./app.component.css']
8})
9export class AppComponent {
10
11 constructor(auth:AuthenticationService){
12
13 }
14
15}