Project

General

Profile

1 60616 akoulalis
import { AuthService } from './../../shared/services/auth.service';
2
import { Component, OnInit } from '@angular/core';
3
4
@Component({
5
  selector: 'app-welcome',
6
  templateUrl: './welcome.component.html',
7
  styleUrls: ['./welcome.component.scss']
8
})
9
export class WelcomeComponent implements OnInit {
10
11
  constructor(public authService: AuthService) { }
12
13
  ngOnInit(): void {
14
  }
15
16
}