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() {
Here are current issues:
@components.IssueList(props.IssueList) } }