Skip to content

Instantly share code, notes, and snippets.

@t4t5
Last active April 3, 2017 13:42
Show Gist options
  • Save t4t5/e638a33f63a136484d7097ea08c38f54 to your computer and use it in GitHub Desktop.
Save t4t5/e638a33f63a136484d7097ea08c38f54 to your computer and use it in GitHub Desktop.
todo-list-template-1
{{! src/ui/components/todo-list/template.hbs }}
<div id="todo-app">
<ul>
{{#each items key="@index" as |item|}}
<li>
{{item.text}}
</li>
{{/each}}
</ul>
<input
placeholder="New todo"
/>
<button>
Add item
</button>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment