Skip to content

Instantly share code, notes, and snippets.

@davidostermann
Created September 24, 2020 07:53
Show Gist options
  • Save davidostermann/4e382e2db913d2be4bf0a34c111f4086 to your computer and use it in GitHub Desktop.
Save davidostermann/4e382e2db913d2be4bf0a34c111f4086 to your computer and use it in GitHub Desktop.
Skool18
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