[MAJOR][FINAL] MVP

This commit is contained in:
2025-09-27 19:22:32 +05:30
parent 587a71ebf1
commit cc6844d3a3
18 changed files with 529 additions and 74 deletions

12
src/types/entity.d.ts vendored
View File

@@ -1,3 +1,10 @@
interface KaModalState {
open: boolean
body?: React.ReactNode
title?: string
[key: string]: any
}
interface Board {
id: number
userId: number
@@ -21,3 +28,8 @@ interface TaskGroup {
groupId: string
tasks: Task[]
}
type StatusOption = {
value: string
label: string
}