Recount-Server/web/dashboard.templ

13 lines
226 B
Text
Raw Normal View History

package web
templ dashboard() {
<title>Home</title>
<h1>Hello World!</h1>
<button hx-get="/hello" hx-trigger="click" hx-target="#hello" hx-swap="outerHtml">Hello you!</button>
<div id="hello">
</div>
}