22 lines
334 B
Handlebars
22 lines
334 B
Handlebars
{{!
|
|
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> |