I am using a ionic select component, struggling to find how I can set placeholder text for select component. Below is the code
<ion-select [(ngModel)]="status">
<ion-option [value]="s.id" *ngFor="let s of statuses">{{s.name}}</ion-option>
</ion-select>