htmgo/htmgo-site/pages/snippets/snippets.go

18 lines
354 B
Go
Raw Normal View History

2024-10-28 15:32:50 +00:00
package snippets
import (
"htmgo-site/partials/snippets"
)
var FormWithLoadingState = Snippet{
name: "Form",
description: "A simple form submission example with a loading state",
sidebarName: "Form with loading state",
path: "/snippets/form",
partial: snippets.FormExample,
}
var Snippets = []Snippet{
FormWithLoadingState,
}