Kanban Board
Drag-and-drop Kanban board with real-time sync via WebSockets. Supports multiple boards, swimlanes, card assignments, and priority labels out of the box.
ReactUI ComponentsBuilt with Claude
2.3k
Stars
12.5k
Installs
3
Deps
2
Comments
Install / Copy
npx create-freestack-module kanban-boardCode Preview
index.tsx
import { DndContext, closestCenter } from "@dnd-kit/core";
import { SortableContext, verticalListSortingStrategy } from "@dnd-kit/sortable";
export function KanbanBoard({ columns, onDragEnd }) {
return (
<DndContext collisionDetection={closestCenter} onDragEnd={onDragEnd}>
<div className="flex gap-4 overflow-x-auto p-4">
{columns.map((column) => (
<div key={column.id} className="w-72 shrink-0 rounded-lg bg-gray-100 p-3">
<h3 className="mb-3 font-semibold">{column.title}</h3>
<SortableContext items={column.cards} strategy={verticalListSortingStrategy}>
{column.cards.map((card) => (
<SortableCard key={card.id} card={card} />
))}
</SortableContext>
</div>
))}
</div>
</DndContext>
);
}DE
devtom3 days ago
Works great out of the box. Added custom card types in about 20 minutes.
SA
sarah-dev2 days ago
Glad to hear it! Custom card types was one of the main design goals.
RE
reactfan1 week ago
The WebSocket sync is solid. We're running this with 15 concurrent users no issues.
Related Modules
Data Table Pro
Full-featured data table with sorting, filtering, pagination, column resizing, and CSV export. Built on TanStack Table with a clean, customizable UI.
1.9kReact
File Uploader
Drag-and-drop file upload component with progress bars, file type validation, and direct S3/R2 integration. Supports multi-file uploads and image previews.
1.4kReact
Rich Text Editor
Notion-style block editor with slash commands, drag-to-reorder, markdown shortcuts, and collaborative editing support. Built on Tiptap with custom extensions.
4.1kReact