Skip to content

Latest commit

 

History

History
42 lines (36 loc) · 602 Bytes

README.md

File metadata and controls

42 lines (36 loc) · 602 Bytes

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:'......'
            }
            .......
            .......
            .......
        ],
  },
  .....
  .....
  .....
];