htmgo/pages/index.go
2024-09-11 12:31:40 -05:00

11 lines
184 B
Go

package pages
import (
"github.com/gofiber/fiber/v2"
"mhtml/h"
"mhtml/pages/base"
)
func IndexPage(c *fiber.Ctx) *h.Page {
return h.NewPage(base.RootPage(h.P("this is cool")))
}