Add basic issue view, styling and ux need improvement

This commit is contained in:
Robin Olsen
2026-02-04 15:22:32 +01:00
parent b56a0a3f43
commit 008bfd1efb
11 changed files with 364 additions and 6 deletions

10
pkg/tui/views/views.go Normal file
View File

@@ -0,0 +1,10 @@
package views
import (
"github.com/LazyBachelor/LazyPM/internal/service"
"github.com/LazyBachelor/LazyPM/pkg/tui/views/dashboard"
)
func NewDashboardView(svc *service.Services) dashboard.Model {
return dashboard.NewDashboard(svc)
}