import { Component, OnInit } from '@angular/core'; import { Observable } from 'rxjs'; import { JwtService } from '../../services/jwt.service'; import { CommonModule } from '@angular/common'; @Component({ selector: 'app-token-timer', standalone: false, templateUrl: './token-timer.component.html', styleUrls: ['./token-timer.component.css'] }) export class TokenTimerComponent implements OnInit { countdown$: Observable; constructor(private jwtService: JwtService) { this.countdown$ = this.jwtService.countdown$; } ngOnInit(): void {} }