mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-21 21:15:24 +08:00
15 lines
243 B
TypeScript
15 lines
243 B
TypeScript
import {Component} from '@angular/core';
|
|
import {ionicBootstrap} from 'ionic-angular';
|
|
|
|
|
|
@Component({
|
|
templateUrl: 'main.html'
|
|
})
|
|
class ApiDemoApp {
|
|
demo = "Toolbar";
|
|
favorites = "recent";
|
|
apps = "free";
|
|
}
|
|
|
|
ionicBootstrap(ApiDemoApp);
|