ghostfolio/apps/client/src/app/pages/markets/markets-page.component.ts
Karel De Smet 46cbbd3bc4
Feature/upgrade to nx 20.3 (#4152)
* Upgrade to Nx 20.3

* Update changelog
2024-12-29 19:47:32 +01:00

19 lines
474 B
TypeScript

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<void>();
public ngOnDestroy() {
this.unsubscribeSubject.next();
this.unsubscribeSubject.complete();
}
}