Created
September 24, 2020 07:53
-
-
Save davidostermann/4e382e2db913d2be4bf0a34c111f4086 to your computer and use it in GitHub Desktop.
Skool18
This file contains 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
export const data = { | |
users: [ | |
{ | |
codeName: "ALMI", | |
fullName: "Alain Michel", | |
status: "Consultant", | |
avatar: "https://source.unsplash.com/600x400/?green,water", | |
skills: [ | |
{ | |
name: "VueJS", | |
rating: 3 | |
}, | |
{ | |
name: "React", | |
rating: 3 | |
}, | |
{ | |
name: "Laravel", | |
rating: 3 | |
} | |
] | |
}, | |
{ | |
codeName: "JACO", | |
fullName: "François Jacques", | |
status: "Consultant confirmé", | |
avatar: "https://source.unsplash.com/600x400/?bleu,flower", | |
skills: [ | |
{ | |
name: "VueJS", | |
rating: 3 | |
}, | |
{ | |
name: "React", | |
rating: 3 | |
}, | |
{ | |
name: "Laravel", | |
rating: 3 | |
} | |
] | |
}, | |
{ | |
codeName: "HELI", | |
fullName: "Henri Philippe", | |
status: "Consultant sénior", | |
avatar: "https://source.unsplash.com/600x400/?yellow,tree", | |
skills: [ | |
{ | |
name: "VueJS", | |
rating: 3 | |
}, | |
{ | |
name: "React", | |
rating: 3 | |
}, | |
{ | |
name: "Laravel", | |
rating: 3 | |
} | |
] | |
} | |
] | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment