package components import ( "github.com/LazyBachelor/LazyPM/internal/models" "github.com/LazyBachelor/LazyPM/pkg/web/components/base" ) type DashboardPageProps struct { ActiveIssues []models.Issue ClosedIssues []models.Issue SelectedIssue *models.Issue SelectedID string BaseURL string QueryParam string EmptyText string DisplayOwner string DisplayAssignee string } templ DashboardPage(props DashboardPageProps) {
{ props.EmptyText }
Create an issue