Project

General

Profile

1
import {Component, OnInit} from '@angular/core';
2
import {AuthenticationService} from '../../services/authentication.service';
3

    
4
@Component ({
5
  selector: 'app-home',
6
  templateUrl: 'home.component.html'
7
})
8

    
9
export class HomeComponent implements OnInit {
10
  isLoggedIn: boolean;
11

    
12
  constructor(private authService: AuthenticationService) { }
13

    
14
  ngOnInit() {}
15

    
16
}
(2-2/2)