mempool/frontend/src/app/lightning/channel/channel-box/channel-box.component.ts

15 lines
352 B
TypeScript
Raw Normal View History

2022-05-15 19:22:14 +04:00
import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
@Component({
selector: 'app-channel-box',
templateUrl: './channel-box.component.html',
styleUrls: ['./channel-box.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class ChannelBoxComponent {
@Input() channel: any;
constructor() { }
}