21 lines
333 B
TypeScript
21 lines
333 B
TypeScript
|
import { Component, Input } from '@angular/core';
|
||
|
import { Host } from '@overflow/model/discovery';
|
||
|
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-host-detail',
|
||
|
templateUrl: './host-detail.component.html',
|
||
|
styleUrls: ['./host-detail.component.scss'],
|
||
|
})
|
||
|
export class HostDetailComponent {
|
||
|
|
||
|
@Input() host: Host;
|
||
|
|
||
|
constructor(
|
||
|
) {
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|