8 lines
302 B
Plaintext
8 lines
302 B
Plaintext
package components
|
|
|
|
templ Status(msg string) {
|
|
<div id="status" hx-get="/status" hx-trigger="load, click" hx-target="#status" hx-swap="outerHTML">
|
|
<button type="button" class="btn btn-outline btn-sm" hx-get="/status/modal" hx-target="#modal-container" hx-swap="innerHTML">{ msg }</button>
|
|
</div>
|
|
}
|