htmgo/htmgo-site/partials/form.go
maddalax 8736c00fd5
htmgo - custom formatter (#47)
* format htmgo elements on save

* formatter updates

* ensure we maintain comments
2024-10-25 10:33:48 -05:00

15 lines
230 B
Go

package partials
import (
"github.com/maddalax/htmgo/framework/h"
"time"
)
func SubmitForm(ctx *h.RequestContext) *h.Partial {
time.Sleep(time.Second * 3)
return h.NewPartial(
h.Div(
h.Text("Form submitted"),
),
)
}