Files

16 lines
339 B
TypeScript

import {App} from 'ionic/ionic';
@App({
templateUrl: 'main.html'
})
class IonicApp {
constructor() {
this.people = [
{"name": "Adam Bradley", "components": [ "all the things"]},
{"name": "Max Lynch", "components": [ "checkbox", "content", "form"]},
{"name": "Tim Lancina", "components": [ "tabs"]}
];
}
}