open-consul/ui/packages/consul-ui/app/components/informed-action/index.hbs

22 lines
334 B
Handlebars
Raw Normal View History

{{!
Copyright (c) HashiCorp, Inc.
SPDX-License-Identifier: MPL-2.0
}}
<div
class="informed-action"
...attributes
>
<div>
<header>
{{yield to="header"}}
</header>
{{yield to="body"}}
</div>
<ul>
{{yield (hash
Action=(component "anonymous" tagName="li")
)
to="actions"}}
</ul>
</div>