member_webapp/@overflow/shared/ui/component/host-ips-overlay.component.ts
2018-06-15 12:56:54 +09:00

16 lines
320 B
TypeScript

import { Component, Input } from '@angular/core';
import { InfraHostIP } from '@overflow/commons-typescript';
@Component({
selector: 'of-host-ips-overlay',
templateUrl: './host-ips-overlay.component.html'
})
export class HostIPsOverlayComponent {
@Input() infraHostIPs: InfraHostIP[];
constructor(
) { }
}