package routes import ( "github.com/LazyBachelor/LazyPM/internal/models" "github.com/LazyBachelor/LazyPM/pkg/web/components" ) type IndexProps struct { Issues []*models.Issue IssueList components.IssueListProps } templ Index(props IndexProps) { @BaseLayout() {

Welcome to the Beads Test Application

Here are current issues:

@components.IssueList(props.IssueList) } }