package routes import ( "fmt" "github.com/LazyBachelor/LazyPM/internal/models" "github.com/LazyBachelor/LazyPM/pkg/web/components" ) type BoardViewProps struct { Issues []*models.Issue BaseURL string QueryParam string EmptyText string } templ BoardView(props BoardViewProps) { @BaseLayout() { @BoardViewContent(props) } } templ BoardViewContent(props BoardViewProps) {
{ issue.Description }
}