19 lines
446 B
TypeScript
19 lines
446 B
TypeScript
|
import { ChangeDetectionStrategy, Component, Input, OnInit } from '@angular/core';
|
||
|
import { Observable } from 'rxjs';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-nodes-list',
|
||
|
templateUrl: './nodes-list.component.html',
|
||
|
styleUrls: ['./nodes-list.component.scss'],
|
||
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
||
|
})
|
||
|
export class NodesListComponent implements OnInit {
|
||
|
@Input() nodes$: Observable<any>;
|
||
|
|
||
|
constructor() { }
|
||
|
|
||
|
ngOnInit(): void {
|
||
|
}
|
||
|
|
||
|
}
|