1
0
Fork 0
sortable-recipes/ember-ui/app/components/meal-list.hbs
2020-03-02 10:01:03 -06:00

14 lines
401 B
Handlebars

<div class="rounded-md shadow-md bg-gray-200">
<SortableGroup
@onChange={{action this.reorderMeals}}
as |group|>
{{#each this.sortedItems as |meal|}}
<SortableItem
@model={{meal}}
@group={{group}}
data-test-id="meal-item">
<MealItem @meal={{meal}} {{on "click" this.openMealDetails}} />
</SortableItem>
{{/each}}
</SortableGroup>
</div>