import {
  Component,
  Input,
  Output,
  EventEmitter,
} from '@angular/core';

// Список селектора
@Component({
  selector: 'hit-selector-list',
  templateUrl: './hit-selector-list.component.html',
  styleUrls: ['./hit-selector-list.component.scss'],
})
export class HitSelectorListComponent {

  // Список
  @Input() public list: any[];

  // Выбранный элемент
  @Input() public selected: any;

  // Событие выбора
  @Output() public select = new EventEmitter<any>();
}
