consul/ui-v2/app/templates/components/healthcheck-output.hbs
John Cowen 06d09d11f1
ui: Move slots to use attributes over positional params (#7032)
* Change all instances of yield/block-slots to use attributes over positional arguments

* Remove the ability to use yield/block-slots with positional params
2020-01-15 09:15:54 +00:00

8 lines
241 B
Handlebars

{{! TODO: this component and its parent should be moved to a single component }}
{{yield}}
<div>
<header>
{{#yield-slot name='header'}}{{yield}}{{/yield-slot}}
</header>
{{#yield-slot name='content'}}{{yield}}{{/yield-slot}}
</div>