import { Component, Input, OnInit } from '@angular/core'; import { DeviceData } from '@creedinteractive/onguard-models'; @Component({ selector: 'onguard-hop-sequence-device', templateUrl: './hop-sequence-device.component.html', styleUrls: ['./hop-sequence-device.component.scss'] }) export class HopSequenceDeviceComponent implements OnInit { @Input() leftDevice: DeviceData; @Input() rightDevice: DeviceData; constructor() { } ngOnInit(): void { } }