app/src/commons/component/host-detail.component.ts

21 lines
333 B
TypeScript
Raw Normal View History

2018-09-09 10:20:21 +00:00
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(
) {
}
}