kaneo (minimalist kanban) fork to experiment adding a tangled integration github.com/usekaneo/kaneo
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 8 lines 323 B view raw
1import { Check, Circle, CircleDot, Search } from "lucide-react"; 2 3export const DEFAULT_COLUMNS = [ 4 { id: "to-do", name: "To Do", icon: Circle }, 5 { id: "in-progress", name: "In Progress", icon: CircleDot }, 6 { id: "in-review", name: "In Review", icon: Search }, 7 { id: "done", name: "Done", icon: Check }, 8] as const;