mirror of
https://github.com/mempool/mempool.git
synced 2025-01-10 07:26:46 +01:00
14 lines
409 B
TypeScript
14 lines
409 B
TypeScript
|
import { ChangeDetectionStrategy, Component, Input, OnInit } from '@angular/core';
|
||
|
import { Observable } from 'rxjs';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-bisq-trades',
|
||
|
templateUrl: './bisq-trades.component.html',
|
||
|
styleUrls: ['./bisq-trades.component.scss'],
|
||
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
||
|
})
|
||
|
export class BisqTradesComponent {
|
||
|
@Input() trades$: Observable<any>;
|
||
|
@Input() market: any;
|
||
|
}
|