-
Notifications
You must be signed in to change notification settings - Fork 110
/
assignment-dummy-data.js
44 lines (44 loc) · 1.28 KB
/
assignment-dummy-data.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
const dummyData = [
{
id: 1,
name: '깃허브',
grade: 1,
profileImg: 'https://github.githubassets.com/images/modules/logos_page/Octocat.png',
},
{
id: 2,
name: '빈학생',
grade: 1,
profileImg: '',
},
{
id: 3,
name: '리액트',
grade: 2,
profileImg: 'https://upload.wikimedia.org/wikipedia/commons/thumb/a/a7/React-icon.svg/2560px-React-icon.svg.png',
},
{
id: 4,
name: '스벨트',
grade: 2,
profileImg: 'https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Svelte_Logo.svg/1200px-Svelte_Logo.svg.png',
},
{
id: 5,
name: '리덕스',
grade: 3,
profileImg: 'https://raw.githubusercontent.com/1ambda/1ambda.github.io/master/assets/images/redux/redux_logo.png?width=30%&height=30%',
},
{
id: 6,
name: '타스',
grade: 3,
profileImg: 'https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Typescript_logo_2020.svg/1200px-Typescript_logo_2020.svg.png',
},
{
id: 7,
name: '싸쓰',
grade: 3,
profileImg: 'https://upload.wikimedia.org/wikipedia/commons/thumb/9/96/Sass_Logo_Color.svg/1280px-Sass_Logo_Color.svg.png',
},
];