htmgo/pages/index.go

12 lines
184 B
Go
Raw Normal View History

2024-09-11 00:52:18 +00:00
package pages
import (
"github.com/gofiber/fiber/v2"
"mhtml/h"
"mhtml/pages/base"
)
func IndexPage(c *fiber.Ctx) *h.Page {
2024-09-11 17:31:40 +00:00
return h.NewPage(base.RootPage(h.P("this is cool")))
2024-09-11 00:52:18 +00:00
}