import { Component, OnDestroy } from '@angular/core'; import { Subject } from 'rxjs'; @Component({ host: { class: 'page' }, selector: 'gf-markets-page', styleUrls: ['./markets-page.scss'], templateUrl: './markets-page.html', standalone: false }) export class MarketsPageComponent implements OnDestroy { private unsubscribeSubject = new Subject(); public ngOnDestroy() { this.unsubscribeSubject.next(); this.unsubscribeSubject.complete(); } }