14 lines
401 B
Handlebars
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>
|