htmgo/examples/chat/components/error.go
2024-09-30 20:32:42 -05:00

11 lines
237 B
Go

package components
import "github.com/maddalax/htmgo/framework/h"
func FormError(error string) *h.Element {
return h.Div(
h.Id("form-error"),
h.Text(error),
h.If(error != "", h.Class("p-4 bg-rose-400 text-white rounded")),
)
}