proper-website-2/components/header.go

12 lines
213 B
Go
Raw Normal View History

2022-03-01 15:50:53 +01:00
package components
import "github.com/maxence-charriere/go-app/v9/pkg/app"
type header struct {
app.Compo
}
func (h *header) Render() app.UI {
return app.Div().Text("Internetica Galactica").Class("header")
}