
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
react-kanbanui
Advanced tools
A modern, high-performance React Kanban board component with drag-and-drop functionality
KanbanUI is a high-performance, fully customizable React Kanban board component built with TypeScript. It features smooth drag-and-drop functionality, optimized rendering, and a clean, modern design.
npm install react-kanbanui
# or
yarn add react-kanbanui
IMPORTANT: You MUST import the CSS file for styles to work!
// Import the CSS file in your main app file (e.g., main.tsx, index.tsx, App.tsx)
import "react-kanbanui/dist/cjs/index.css";
// or for ESM
import "react-kanbanui/dist/esm/index.css";
// Then import the components
import { KanbanBoard, type IKanbanColumn } from "react-kanbanui";
Note: The CSS file includes all necessary styles - no need to install Tailwind CSS separately!
import React, { useState } from "react";
import { KanbanBoard, IKanbanColumn } from "react-kanbanui";
const MyApp = () => {
const [columns, setColumns] = useState<IKanbanColumn[]>([
{
id: "todo",
title: "To Do",
status: "todo",
cards: [
{
id: "card-1",
title: "Implement login",
description: "Create user authentication system",
priority: "high",
status: "todo",
assignee: "John Doe",
tags: ["frontend", "auth"],
},
],
},
]);
const handleColumnsChange = (newColumns: IKanbanColumn[]) => {
setColumns(newColumns);
};
return (
<KanbanBoard
columns={columns}
onColumnsChange={handleColumnsChange}
theme="light"
columnHeight="600px"
/>
);
};
KanbanUI uses Tailwind CSS classes by default but can be fully customized:
<KanbanBoard
columns={columns}
useOwnStyles={true}
className="my-custom-board"
columnHeight="700px"
/>
const columns: IKanbanColumn[] = [
{
id: "in-progress",
title: "In Progress",
status: "in-progress",
maxCards: 3, // Limit to 3 cards
cards: [],
},
];
import { KanbanCard } from "react-kanbanui";
const CustomCard = ({ card, ...props }) => (
<KanbanCard {...props} card={card} className="custom-card-style" />
);
KanbanUI is optimized for performance with:
See the Performance Guide for detailed testing instructions.
KanbanUI supports both light and dark themes:
// Light theme (default)
<KanbanBoard columns={columns} theme="light" />
// Dark theme
<KanbanBoard columns={columns} theme="dark" />
| Prop | Type | Default | Description |
|---|---|---|---|
columns | IKanbanColumn[] | - | Array of columns with cards |
onColumnsChange | (columns: IKanbanColumn[]) => void | - | Callback when columns change |
useOwnStyles | boolean | false | Use your own CSS classes |
theme | "light" | "dark" | "light" | Theme variant |
columnHeight | string | "600px" | Height of columns |
className | string | "" | Additional CSS classes |
interface IKanbanColumn {
id: string;
title: string;
status: "todo" | "in-progress" | "review" | "done";
cards: IKanbanCard[];
color?: string;
maxCards?: number;
}
interface IKanbanCard {
id: string;
title: string;
description?: string;
priority: "low" | "medium" | "high" | "urgent";
status: "todo" | "in-progress" | "review" | "done";
assignee?: string;
tags?: string[];
}
MIT License - see LICENSE.md for details.
See Contributing Guide for development setup and guidelines.
FAQs
A modern, high-performance React Kanban board component with drag-and-drop functionality
We found that react-kanbanui demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.