proper-website-2/components/bannerpanel.go
DutchEllie 73385c9d39
All checks were successful
continuous-integration/drone/push Build is passing
Added Evillious guide website
2022-03-14 21:37:22 +01:00

14 lines
207 B
Go

package components
import "github.com/maxence-charriere/go-app/v9/pkg/app"
type bannerPanel struct {
app.Compo
}
func (b *bannerPanel) Render() app.UI {
return app.Div().
Class("leftbar").
Body()
}