Interactive board (editable)
Usage
@data.KanbanBoard(data.KanbanBoardProps{
Editable: true, // allow adding/removing cards in browser
Columns: []data.KanbanColumn{
{
ID: "todo", Title: "To Do",
Cards: []data.KanbanCard{
{ID: "c1", Title: "My task", Description: "Details…", Badge: "feature"},
},
},
{ID: "done", Title: "Done"},
},
})