Skip to content

Commit

Permalink
Step 3.1: Add dynamic html to the App component
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilkisiela authored and DAB0mB committed Dec 14, 2016
1 parent bc28498 commit b19644b
Showing 1 changed file with 9 additions and 14 deletions.
23 changes: 9 additions & 14 deletions client/imports/app/app.component.html
@@ -1,14 +1,9 @@
<ul>
<li>
<span>Dubstep-Free Zone</span>
<p>
Can we please just for an evening not listen to dubstep.
</p>
</li>
<li>
<span>All dubstep all the time</span>
<p>
Get it on!
</p>
</li>
</ul>
<div>
<ul>
<li *ngFor="let party of parties">
{{party.name}}
<p>{{party.description}}</p>
<p>{{party.location}}</p>
</li>
</ul>
</div>

0 comments on commit b19644b

Please sign in to comment.