Skip to solution
hardMachine Coding

Build a Kanban board with drag and drop

1.1k views
01

Understand the problem

Build a Trello-style board where cards drag between columns.

ReactDrag and DropState
02

Attempt it yourself

Sketch your approach before reading the solution — that's what interviews test.

Nudge consolestandby

Stuck? Beam a request up — the console returns a conceptual nudge that guides your logic without spoiling the implementation.

03

Study the solution

Solve in

Building a Kanban Board (drag & drop) in React

Mental model: Cards live in a flat list, each tagged with a col. Columns are derived by filtering. Drag-and-drop uses the native HTML5 API: dragstart stashes the card id in dataTransfer; a column's dragover (with preventDefault) marks it a drop target; `d

Solution ready — 2 min read

Classified // press E to declassify

04

React solution

Complete solutionRun Playground
import React from 'react';
import Kanban from './src/Kanban';

export default function App() {
  return (
    <div style={{ fontFamily: 'sans-serif', padding: 20 }}>
      <h1>Kanban Demo</h1>
      <p style={{ color: '#666' }}>Drag cards between columns.</p>
      <Kanban />
    </div>
  );
}
05

Join the discussion

Discussion (0)

Sign in to join the discussion.

No responses yet. Be the first to share what you think.

Transmission complete // awaiting log

KEEP THE
STREAK ALIVE.

Dossier 70 of 87 decoded in the Frontend Machine Coding track. One more won't hurt.

Back to track