Files
2016-02-22 17:45:17 -06:00

18 lines
235 B
TypeScript

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