import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-select-item-list', templateUrl: './select-item-list.component.html', styleUrls: ['./select-item-list.component.css'] }) export class SelectItemListComponent implements OnInit { constructor() { } ngOnInit(): void { } }