18 lines
377 B
TypeScript
18 lines
377 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
import { AuthService } from '@app/core/services/auth/auth.service';
|
|
|
|
@Component( {
|
|
selector: 'app-header',
|
|
templateUrl: './header.component.html',
|
|
styleUrls: [ './header.component.css' ]
|
|
} )
|
|
export class HeaderComponent implements OnInit {
|
|
|
|
constructor( private authService: AuthService ) {
|
|
}
|
|
|
|
ngOnInit() {
|
|
}
|
|
|
|
}
|