1
0
Fork 0
sortable-recipes/ember-ui/app/components/meal-add.hbs
2020-02-24 10:30:54 -06:00

11 lines
362 B
Handlebars

{{#if this.fetchMeal.isRunning}}
<LoadingIndicator />
{{/if}}
<button
type="button"
{{on "click" this.addMeal}}
class="w-full bg-teal-500 hover:bg-teal-400 focus:bg-teal-400 text-white font-bold mt-4 py-2 px-4 border-b-4 border-teal-700 hover:border-teal-500 focus:border-teal-500 rounded"
data-test-id="meal-add-button">
Add Another Meal
</button>