htmgo/htmgo-site/pages/snippets/snippets.go
2024-10-28 10:32:50 -05:00

17 lines
354 B
Go

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,
}