import {App, Page} from 'ionic/ionic'; @Page({ templateUrl: 'main.html' }) class E2EPage { constructor() { this.musicAlertOpts = { title: '1994 Music', subTitle: 'Select your favorite' }; } } @App({ template: '' }) class E2EApp { constructor() { this.root = E2EPage; } }