htmgo/htmgo-site/pages/examples/click-to-edit.go

11 lines
187 B
Go
Raw Normal View History

2024-10-28 23:47:00 +00:00
package examples
import (
"github.com/maddalax/htmgo/framework/h"
)
func ClickToEditExample(ctx *h.RequestContext) *h.Page {
SetSnippet(ctx, &ClickToEditSnippet)
return Index(ctx)
}