What is the recommended way to apply a default value to an IgxSelectComponent
using a template like this?:
<igx-select type="string" formControlName="classification">
<label igxLabel>Classification</label>
<igx-select-item *ngFor="let classification of classifications$ |async" [value]="classification">
{{classification}}
</igx-select-item>
</igx-select>
Thanks in advance!