Skip to content

kamrul1157024/simple-kanban-board

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simple Kanban Board

https://simple-kanban-board-yd7n.vercel.app/

Build With:

CSS Grid, ReactJS, ReactDnD

TO run:

npm start

lint:

npm run lint

Data:

Your data will control the view.Change the data, view will happen accordingly,

data = [
  {
    colName: 'QuoteList1',
    color: 'purple',
    colId:'......' ,
    data: [
            {
                text:'........',
                rowId:'......'
            }
            .......
            .......
            .......
        ],
  },
  .....
  .....
  .....
];