mempool/frontend/src/app/components/assets/assets-featured/assets-featured.component.ts

24 lines
668 B
TypeScript
Raw Normal View History

2022-02-06 01:20:26 +04:00
import { Component, OnInit } from '@angular/core';
2022-02-06 04:18:56 +04:00
import { Observable } from 'rxjs';
import { ApiService } from '@app/services/api.service';
import { StateService } from '@app/services/state.service';
2022-02-06 01:20:26 +04:00
@Component({
selector: 'app-assets-featured',
templateUrl: './assets-featured.component.html',
styleUrls: ['./assets-featured.component.scss']
})
export class AssetsFeaturedComponent implements OnInit {
featuredAssets$: Observable<any>;
constructor(
private apiService: ApiService,
2024-03-24 15:41:18 +09:00
private stateService: StateService,
2022-02-06 01:20:26 +04:00
) { }
ngOnInit(): void {
2024-03-24 15:41:18 +09:00
this.featuredAssets$ = this.apiService.listFeaturedAssets$(this.stateService.network);
2022-02-06 01:20:26 +04:00
}
}