import {App, Platform} from 'ionic/ionic';
import {HomePage} from './home/home';
import './app.scss';
@App({
template: `
`,
})
export class MyApp {
constructor(platform: Platform) {
this.platform = platform;
this.initializeApp();
this.root = HomePage;
}
initializeApp() {
this.platform.ready().then(() => {
console.log('Platform ready');
});
}
}