blob: 0499045a7937c35a53306fb5391493131e8f40bd [file] [log] [blame]
import { Component, Inject } from '@angular/core';
import { AuthenticationService } from './services/authentication.service';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
constructor(auth:AuthenticationService){
}
}