import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-get-out-of-line-details', templateUrl: './get-out-of-line-details.component.html', styleUrls: ['./get-out-of-line-details.component.scss'] }) export class GetOutOfLineDetailsComponent implements OnInit { constructor() { } ngOnInit(): void { } selectedType:string = 'img' contentType(type){ this.selectedType = type } }