20 lines
277 B
TypeScript
20 lines
277 B
TypeScript
import { Component, Input } from '@angular/core';
|
|
import { Host } from '@overflow/model/discovery';
|
|
|
|
|
|
@Component({
|
|
selector: 'app-d3-force',
|
|
templateUrl: './d3-force.component.html',
|
|
})
|
|
export class D3ForceComponent {
|
|
|
|
@Input() host: Host;
|
|
|
|
constructor(
|
|
) {
|
|
|
|
}
|
|
|
|
|
|
}
|