import { Component, Input, OnInit } from '@angular/core'; import { Choice } from '../../../core/models/choice.model'; @Component({ selector: 'app-choice-table', templateUrl: './choice-table.component.html', styleUrls: ['./choice-table.component.scss'], }) export class ChoiceTableComponent implements OnInit { @Input() detailledDisplay: boolean; @Input() choice: Choice; constructor() {} ngOnInit(): void {} }