multi-project/projects/app/app.component.ts

17 lines
449 B
TypeScript

import { Component } from '@angular/core';
import { environment } from 'projects/environments/environment';
import { AuthenticationService } from './_services';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
})
export class AppComponent {
title = 'app-root';
env = environment.test
constructor(private authService: AuthenticationService) {
authService.checkUser();
}
}