import { Component, OnInit } from '@angular/core'; import {LOGOUT_TRANSLATIONS} from './logout.const' declare var CONFIG: any; @Component({ selector: 'app-logout', templateUrl: './logout.component.html', styleUrls: ['./logout.component.scss'] }) export class LogoutComponent implements OnInit { logoutI18N; assetUrl: string = CONFIG.BASE_URL; constructor() { } ngOnInit(): void { this.logoutI18N = LOGOUT_TRANSLATIONS; } loginBack() { localStorage.isLogout = false; window.location.href = '/home'; } }