wrap example in div

This commit is contained in:
maddalax 2025-08-16 09:47:51 -05:00
parent 5dba9d0167
commit 72c171709e

View file

@ -18,7 +18,9 @@ var PartialsSnippet = `func CurrentTimePartial(ctx *h.RequestContext) *h.Partial
var examplePageSnippet = `func CurrentTimePage(ctx *h.RequestContext) *h.Page {
return RootPage(
h.GetPartial(partials.CurrentTimePartial, "load, every 1s")
h.Div(
h.GetPartial(partials.CurrentTimePartial, "load, every 1s")
)
)
}`