This commit is contained in:
petkir 2020-06-30 14:44:58 +02:00
parent 3efff6d24f
commit cb3619059d
1 changed files with 10 additions and 8 deletions

View File

@ -33,20 +33,22 @@ In the Files ```MockKanban.tsx``` you can find many Configuration Options
/>
```
Bucket
Buckets
```
buckets:[
{bucket:'Not Started', bucketheadline:'Not Started Head',percentageComplete:0, color:'yellow' ,allowAddTask:true},
{bucket:'Test1', bucketheadline:'Test1 Head',percentageComplete:10, color:'orange',allowAddTask:true },
{bucket:'Test2', bucketheadline:'Test2 Head',percentageComplete:50, color:'green' },
],
[
{bucket:'Not Started', bucketheadline:'Not Started Head',percentageComplete:0, color:'yellow' ,allowAddTask:true},
{bucket:'Test1', bucketheadline:'Test1 Head',percentageComplete:10, color:'orange',allowAddTask:true },
{bucket:'Test2', bucketheadline:'Test2 Head',percentageComplete:50, color:'green' },
]
```
Task
Tasks
```
[
{taskId: '1', title:'test1',bucket:'Not Started'},
{taskId: '5', title:'test 5',bucket:'Test3'},
{taskId: '5', title:'test 5',bucket:'Test3'}
]
```