2022-03-14 21:10:10 +01:00
|
|
|
package components
|
|
|
|
|
|
|
|
import "github.com/maxence-charriere/go-app/v9/pkg/app"
|
|
|
|
|
|
|
|
type bannerPanel struct {
|
|
|
|
app.Compo
|
|
|
|
}
|
2022-03-14 21:37:22 +01:00
|
|
|
|
|
|
|
func (b *bannerPanel) Render() app.UI {
|
|
|
|
return app.Div().
|
|
|
|
Class("leftbar").
|
|
|
|
Body()
|
|
|
|
}
|