Files
2016-01-27 12:09:58 -05:00

18 lines
233 B
TypeScript

import {App} from 'ionic/ionic';
@App({
templateUrl: 'main.html'
})
class E2EApp {
constructor() {
this.myParam = '';
this.myValues = {
value1: 'Dynamic Input',
value2: 'Dynamic Textarea'
};
}
}