Files
ionic-framework/src/components/input/test/fixed-inline-labels/index.ts
2016-07-19 13:31:46 -07:00

25 lines
400 B
TypeScript

import { Component } from '@angular/core';
import { ionicBootstrap } from '../../../../../src';
@Component({
templateUrl: 'main.html'
})
class PageOne {
url: string;
input1: string = 'Text 1';
onEvent(event: any) {
console.log('Did Event:', event.type);
}
}
@Component({
template: '<ion-nav [root]="root"></ion-nav>'
})
class E2EApp {
root = PageOne;
}
ionicBootstrap(E2EApp);