Created
April 9, 2020 22:31
-
-
Save farshid1/549045e7ec1c334bd85a999016f70f94 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const data = [ | |
{ | |
assignee: 'John Doe', | |
id: '1', | |
title: 'Task 1', | |
status: 'To Do', | |
}, | |
{ | |
assignee: 'Jane Doe', | |
id: '2', | |
title: 'Task 2', | |
status: 'To Do', | |
}, | |
{ | |
assignee: 'George Bluth', | |
id: '14', | |
title: 'Task 14', | |
status: 'In Progress', | |
}, | |
{ | |
assignee: 'Janet Weaver', | |
id: '22', | |
title: 'Task 22', | |
status: 'Ready For Test', | |
}, | |
{ | |
assignee: 'Chris Morris', | |
id: '35', | |
title: 'Task 35', | |
status: 'Ready For Test', | |
}, | |
{ | |
assignee: 'Amy Wong', | |
id: '47', | |
title: 'Task 47', | |
status: 'Done', | |
}, | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment