Skip to content

Instantly share code, notes, and snippets.

@t4t5
Created April 3, 2017 14:52
Show Gist options
  • Save t4t5/e75d9685856dd49bcef9d3ffef6615e9 to your computer and use it in GitHub Desktop.
Save t4t5/e75d9685856dd49bcef9d3ffef6615e9 to your computer and use it in GitHub Desktop.
todo-list-template-2.hbs
{{! src/ui/components/todo-list/template.hbs }}
<div id="todo-app">
<ul>
{{#each items key="@index" as |item|}}
<todo-item
@item={{item}}
/>
{{/each}}
</ul>
<input
placeholder="New todo"
value={{newItemText}}
onkeyup={{action updateNewItemText}}
/>
<button onclick={{action addItem}}>
Add item
</button>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment