32 lines
730 B
TypeScript
32 lines
730 B
TypeScript
'use client'
|
|
|
|
export interface SoloTask {
|
|
id: string
|
|
title: string
|
|
description: string | null
|
|
implementation_plan: string | null
|
|
priority: number
|
|
sort_order: number
|
|
status: 'TO_DO' | 'IN_PROGRESS' | 'REVIEW' | 'DONE'
|
|
story_id: string
|
|
story_title: string
|
|
}
|
|
|
|
export interface SoloBoardProps {
|
|
productId: string
|
|
productName: string
|
|
sprintGoal: string
|
|
tasks: SoloTask[]
|
|
unassignedCount: number
|
|
isDemo: boolean
|
|
currentUserId: string
|
|
}
|
|
|
|
// Full implementation in ST-356
|
|
export function SoloBoard(_props: SoloBoardProps) {
|
|
return (
|
|
<div className="flex items-center justify-center h-full">
|
|
<p className="text-sm text-muted-foreground">Solo bord wordt geladen in ST-356…</p>
|
|
</div>
|
|
)
|
|
}
|