13 lines
336 B
Go
13 lines
336 B
Go
package view
|
|
|
|
import (
|
|
"github.com/a-h/templ"
|
|
"github.com/labstack/echo/v4"
|
|
)
|
|
|
|
// Render wraps templ component rendering for Echo
|
|
func Render(c echo.Context, component templ.Component) error {
|
|
c.Response().Header().Set(echo.HeaderContentType, echo.MIMETextHTML)
|
|
return component.Render(c.Request().Context(), c.Response().Writer)
|
|
}
|