diff --git a/README.md b/README.md index e3fe1c3..44b34db 100644 --- a/README.md +++ b/README.md @@ -1 +1,40 @@ -drag-and-drop-playground \ No newline at end of file +# Simple Kanban Board + +### 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:'......' + } + ....... + ....... + ....... + ], + }, + ..... + ..... + ..... +]; +``` diff --git a/simple-kanban-board.gif b/simple-kanban-board.gif new file mode 100644 index 0000000..cb4631e Binary files /dev/null and b/simple-kanban-board.gif differ