InterviewSolution
Saved Bookmarks
| 1. |
What is an ? |
|
Answer» The <ion-app> ELEMENT serves as a container for the whole Ionic app. The Ionic project should only contain one <ion-app> element and several Ionic COMPONENTS LIKE headers, footers, MENUS, content, and so on. When shown, all of these components are wrapped inside the <ion-app> component. For example: <ion-app><ion-header>//code</ion-header><ion-content>//code</ion-content></ion-app> |
|