mempool/frontend/src/app/lightning/channel/channel-box/channel-box.component.ts
2022-07-08 18:55:23 +02:00

15 lines
352 B
TypeScript

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() { }
}