13 lines
226 B
Text
13 lines
226 B
Text
|
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>
|
||
|
|
||
|
}
|