htmgo/htmgo-site/pages/examples/form.go

11 lines
198 B
Go
Raw Permalink Normal View History

2024-10-28 16:39:46 +00:00
package examples
2024-10-28 15:32:50 +00:00
import (
"github.com/maddalax/htmgo/framework/h"
)
2024-10-31 14:44:16 +00:00
func FormWithLoadingState(ctx *h.RequestContext) *h.Page {
2024-10-28 15:56:03 +00:00
SetSnippet(ctx, &FormWithLoadingStateSnippet)
2024-10-28 15:32:50 +00:00
return Index(ctx)
}