blob: 0499045a7937c35a53306fb5391493131e8f40bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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){
}
}
|