Task Board
square-ui/task-boardFreeComponent
Main task board component with drag and drop functionality.
Install it
npx shadcn@latest add https://square.lndev.me/registry/task-board.jsonSource
1'use client';23import { useTasksStore } from '@/store/tasks-store';4import { statuses } from '@/mock-data/statuses';5import { TaskColumn } from './task-column';67export function TaskBoard() {8 const { tasksByStatus } = useTasksStore();910 return (11 <div className="flex h-full gap-3 px-3 pt-4 pb-2 min-w-max overflow-hidden">12 {statuses.map((status) => (13 <TaskColumn14 key={status.id}15 status={status}16 tasks={tasksByStatus[status.id] || []}17 />18 ))}19 </div>20 );21}22
Files it writes
More from square-ui
All 22 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| Chat Conversation Viewchat-conversation-view | square-ui | Components | Free | no deps | |
| Chat Input Boxchat-input-box | square-ui | Components | Free | no deps | |
| Chat Mainchat-main | square-ui | Components | Free | no deps | |
| Chat Messagechat-message | square-ui | Components | Free | no deps | |
| Chat Sidebarchat-sidebar | square-ui | Components | Free | no deps | |
| Chat Welcome Screenchat-welcome-screen | square-ui | Components | Free | no deps | |
| Email Detailemail-detail | square-ui | Components | Free | no deps | |
| Email Listemail-list | square-ui | Components | Free | no deps |
