1
0
Fork 0
sortable-recipes/app/components/recipe-list.hbs
2019-12-22 12:10:00 -06:00

16 lines
418 B
Handlebars

<div class="rounded-md shadow-md">
<SortableGroup
@model={{this.items}}
@onChange={{action this.reorderItems}}
as |group|>
{{#each group.model as |meal|}}
<group.item
@model={{meal}}
as |item|>
<item.handle>
<RecipePreview @meal={{meal}} {{on "click" this.openMealDetails}} />
</item.handle>
</group.item>
{{/each}}
</SortableGroup>
</div>