Files
2016-05-31 15:49:56 -05:00

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);