Skip to content

Commit

Permalink
Step 3.2: Load parties data into app
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilkisiela authored and dotansimha committed Nov 27, 2016
1 parent 7d77efc commit ec5b1e4
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion client/imports/app/app.component.ts
Expand Up @@ -6,4 +6,23 @@ import template from './app.component.html';
selector: 'app',
template
})
export class AppComponent {}
export class AppComponent {
parties: any[];

constructor() {
this.parties = [
{'name': 'Dubstep-Free Zone',
'description': 'Can we please just for an evening not listen to dubstep.',
'location': 'Palo Alto'
},
{'name': 'All dubstep all the time',
'description': 'Get it on!',
'location': 'Palo Alto'
},
{'name': 'Savage lounging',
'description': 'Leisure suit required. And only fiercest manners.',
'location': 'San Francisco'
}
];
}
}

0 comments on commit ec5b1e4

Please sign in to comment.