Это тс с вводом, который я упоминал
@Input() event: ClassEvent //this is the input
start-date: FormControl;
end-date: FormControl;
class : FormControl;
myForm: FormGroup;
И это часть формы
<div class="form-group">
<select id="location_id" formControlName="class"
required>
<option value="" disabled selected>Classes</option>
<option *ngFor="let class of classList">
{{class.name}}</option>
</select>
</div>
</div