You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
RTL/src/app/shared/components/ln-services/loop/loop-status/loop-status.component.ts

16 lines
345 B
TypeScript

import { Component, Input } from '@angular/core';
import { LoopStatus } from '../../../../models/loopModels';
@Component({
selector: 'rtl-loop-status',
templateUrl: './loop-status.component.html',
styleUrls: ['./loop-status.component.scss']
})
export class LoopStatusComponent {
@Input() loopStatus: LoopStatus;
constructor() {}
}