1
0
Fork 0
sortable-recipes/ember-ui/app/components/recipe-list.hbs
Ava Gaiety Wroten 84a1e7d972 Backend
2019-12-24 16:52:05 -06:00

16 lines
436 B
Handlebars

<div class="rounded-md shadow-md bg-gray-200">
<SortableGroup
@model={{this.sortedItems}}
@onChange={{action this.reorderMeals}}
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>