import { Component } from '@angular/core'; import { ionicBootstrap } from 'ionic-angular'; @Component({ templateUrl: 'main.html' }) class ApiDemoPage { isDisabled = true; } @Component({ template: '' }) class ApiDemoApp { root = ApiDemoPage; } ionicBootstrap(ApiDemoApp);