1
0
Fork 0
ember-octane-quickstart/app/components/people-list.hbs
2019-09-26 10:02:57 -05:00

9 lines
172 B
Handlebars

<h2>{{@title}}</h2>
<ul>
{{#each @people as |person|}}
<li>
<button {{on "click" (fn this.showPerson person)}}>{{person}}</button>
</li>
{{/each}}
</ul>