Project

General

Profile

1 49961 myrto.kouk
import {Component, OnInit} from '@angular/core';
2 50110 myrto.kouk
import {AuthenticationService} from '../../services/authentication.service';
3 49961 myrto.kouk
4
@Component ({
5
  selector: 'app-home',
6
  templateUrl: 'home.component.html'
7
})
8
9
export class HomeComponent implements OnInit {
10
  isLoggedIn: boolean;
11
12 50110 myrto.kouk
  constructor(private authService: AuthenticationService) { }
13 49961 myrto.kouk
14 50110 myrto.kouk
  ngOnInit() {}
15 49961 myrto.kouk
16
}