aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_elements/select-item-list/select-item-list.component.ts
blob: f6aae7a05823bbd3ea456985c7c6d41d81fe476b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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 {
  }

}