'use client'
import { useState } from 'react'
type Priority = 'high' | 'medium' | 'low'
type Status = 'todo' | 'in-progress' | 'review' | 'done'
interface Card {
id: number
title: string
priority: Priority
assignee: string
tags: string[]
}
const PRIORITY_COLORS = { high: '#ef4444', medium: '#f59e0b', low: '#22c55e' }
const INITIAL: ReKanbanBoard