mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-21 21:15:24 +08:00
16 lines
323 B
TypeScript
16 lines
323 B
TypeScript
import {Component} from '@angular/core';
|
|
import {ionicBootstrap} from 'ionic-angular';
|
|
|
|
|
|
// Use the toolbar demo but pass in the demo name to change the title
|
|
@Component({
|
|
templateUrl: '../toolbar/main.html'
|
|
})
|
|
class ApiDemoApp {
|
|
demo = "Navbar";
|
|
favorites = "recent";
|
|
apps = "free";
|
|
}
|
|
|
|
ionicBootstrap(ApiDemoApp);
|