I have an application, and I want to know how do I enter information into the firebase database and then put that data into an ion-select , my application uses a select of professions such as "mechanic", "bricklayer", "teacher", etc., and I want it to be within a ion-option of ion-select , but not I know how to do it. In my code I did so:
<ion-select [(ngModel)]="profissoes1" okText="Salvar" cancelText="Cancelar">
<ion-option *ngFor="let items of items">{{items}}</ion-option>
</ion-select>
and I want a tip on how to use typescript, to get the firebase professions to be in place of {{items}}, and how to enter the professions on the firebase as well