use title service

This commit is contained in:
Adam Bradley
2015-10-04 11:45:32 -05:00
parent 2b86705f54
commit dfe19a962d
4 changed files with 23 additions and 16 deletions

View File

@@ -1,7 +1,11 @@
import {App} from 'ionic/ionic';
import {App, IonicApp} from 'ionic/ionic';
@App({
templateUrl: 'main.html'
})
class E2EApp {}
class E2EApp {
constructor(app: IonicApp) {
app.setTitle('Basic Buttons');
}
}