-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmockData.js
39 lines (37 loc) · 1.15 KB
/
mockData.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
const mockData_Contents = [
{
'imageUrl' : 'https://i.pinimg.com/originals/e8/bb/10/e8bb108d1aab76692f6db2af816b8dec.jpg',
'title' : 'Albumart1',
'contents' : ['Albumart1-content1'],
},
{
'imageUrl' : 'https://99designs-blog.imgix.net/blog/wp-content/uploads/2017/12/attachment_68585523.jpg?auto=format&q=60&fit=max&w=930',
'title' : 'Albumart2',
'contents' : ['Albumart2-content1', 'Albumart2-content2'],
},
{
'imageUrl' : 'https://i.pinimg.com/originals/b4/75/00/b4750046d94fed05d00dd849aa5f0ab7.jpg',
'title' : 'Albumart3',
'contents' : ['Albumart3-content1', 'Albumart3-content2', 'Albumart3-content2'],
},
{
'imageUrl' : 'https://pbs.twimg.com/media/DzMyi1BU0AAUaDH.jpg',
'title' : 'Albumart4',
'contents' : ['Albumart4-content1', 'Albumart4-content2', 'Albumart4-content3', 'Albumart4-content4'],
}
]
const mockData_Menu = [
{
'title': 'Menu1',
},
{
'title': 'Menu2',
},
{
'title': 'Menu3',
},
{
'title': 'Menu4',
}
]
export default {mockData_Contents, mockData_Menu};