Greetings,
I have a very simple typescript tab application, and on its first page I have another component that I’ve created.
<ion-content>
<my-component></my-component>
</ion-content>
In that other component I have a list of items that I get from some service. In the component’s html I use ion-list,
<ion-list>
<ion-item *ngFor="#item of items">
{{item.displayName}}
</ion-item>
</ion-list>
When I render the app, the list looks completely different, compared to when the list is on one of the main pages. Do I need to import ion-list somehow into that component, and declare it as a directive? I tried that a little but couldn’t find the place where ion-list is exported from.
Thanks,
Boaz