mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 20:33:32 +08:00
13 lines
203 B
TypeScript
13 lines
203 B
TypeScript
import {Component} from '@angular/core';
|
|
import {ionicBootstrap} from 'ionic-angular';
|
|
|
|
|
|
@Component({
|
|
templateUrl: 'main.html'
|
|
})
|
|
class ApiDemoApp {
|
|
isDisabled = true;
|
|
}
|
|
|
|
ionicBootstrap(ApiDemoApp);
|