11 lines
211 B
Go
11 lines
211 B
Go
package handler
|
|
|
|
import (
|
|
"github.com/a-h/templ"
|
|
"github.com/labstack/echo/v4"
|
|
)
|
|
|
|
func render(c echo.Context, component templ.Component) error {
|
|
return component.Render(c.Request().Context(), c.Response())
|
|
}
|