Created
December 22, 2020 14:49
-
-
Save Charlie-robin/40e52ab364725633175d4db40375067c to your computer and use it in GitHub Desktop.
Mock data for Ticket tracker project.
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 team = [ | |
{ | |
id: 1, | |
name: "Alima Miller", | |
role: "Junior Software Developer" | |
}, | |
{ | |
id: 2, | |
name: "Evelyn Rodgers", | |
role: "Junior Software Developer" | |
}, | |
{ | |
id: 3, | |
name: "Henley Myers", | |
role: "Junior Software Developer" | |
}, | |
{ | |
id: 4, | |
name: "Celyn Sanders", | |
role: "Software Developer" | |
}, | |
{ | |
id: 5, | |
name: "Effie Mohamed", | |
role: "Software Developer" | |
}, | |
{ | |
id: 6, | |
name: "Karam Lees", | |
role: "Senior Software Developer" | |
}, | |
{ | |
id: 7, | |
name: "Eleanor Dowling", | |
role: "Project Manager" | |
}, | |
{ | |
id: 8, | |
name: "Haris Grey", | |
role: "Tester" | |
}, | |
{ | |
id: 9, | |
name: "Sohaib Farley", | |
role: "Tester" | |
}, | |
{ | |
id: 10, | |
name: "Phillip Mitchell", | |
role: "Hard Man" | |
}, | |
] | |
export default team; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment