home.component.ts
417 Bytes
import { Component, OnInit, HostListener } from '@angular/core';
import { Router } from '@angular/router';
import { appSettings } from 'src/etc/AppSettings';
@Component({
selector: 'app-home',
templateUrl: './home.component.html',
styleUrls: ['./home.component.scss']
})
export class HomeComponent implements OnInit {
private apiUrl: string = appSettings.apiUrl;
constructor() { }
ngOnInit() {
}
}