-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathalbums.js
86 lines (86 loc) · 2.34 KB
/
albums.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
module.exports = {
'1000': {
id: 1000,
artist: 'Ramones',
name: 'Ramones',
image: 'https://ng-music.s3-sa-east-1.amazonaws.com/data/ramones-ramones.jpg'
},
'1001': {
id: 1001,
artist: 'Ramones',
name: 'Leave Home',
image: 'https://ng-music.s3-sa-east-1.amazonaws.com/data/ramones-leave-home.jpg'
},
'1002': {
id: 1002,
artist: 'Ramones',
name: 'Rocket to Russia',
image: 'https://ng-music.s3-sa-east-1.amazonaws.com/data/ramones-rocket-to-russia.jpg'
},
'1003': {
id: 1003,
artist: 'Ramones',
name: 'Road to Ruin',
image: 'https://ng-music.s3-sa-east-1.amazonaws.com/data/ramones-road-to-ruin.jpg'
},
'1004': {
id: 1004,
artist: 'Ramones',
name: 'End of the Century',
image: 'https://ng-music.s3-sa-east-1.amazonaws.com/data/ramones-end-of-the-century.jpg'
},
'1005': {
id: 1005,
artist: 'Ramones',
name: 'Pleasant Dreams',
image: 'https://ng-music.s3-sa-east-1.amazonaws.com/data/ramones-pleasant-dreams.jpg'
},
'1006': {
id: 1006,
artist: 'Ramones',
name: 'Subterranean Jungle',
image: 'https://ng-music.s3-sa-east-1.amazonaws.com/data/ramones-subterranean-jungle.jpg'
},
'1007': {
id: 1007,
artist: 'Ramones',
name: 'Too Tough to Die',
image: 'https://ng-music.s3-sa-east-1.amazonaws.com/data/ramones-too-tough-to-die.jpg'
},
'1008': {
id: 1008,
artist: 'Ramones',
name: 'Animal Boy',
image: 'https://ng-music.s3-sa-east-1.amazonaws.com/data/ramones-animal-boy.jpg'
},
'1009': {
id: 1009,
artist: 'Ramones',
name: 'Halfway to Sanity',
image: 'https://ng-music.s3-sa-east-1.amazonaws.com/data/ramones-halfway-to-sanity.jpg'
},
'1010': {
id: 1010,
artist: 'Ramones',
name: 'Brain Drain',
image: 'https://ng-music.s3-sa-east-1.amazonaws.com/data/ramones-brain-drain.jpg'
},
'1011': {
id: 1011,
artist: 'Ramones',
name: 'Mondo Bizarro',
image: 'https://ng-music.s3-sa-east-1.amazonaws.com/data/ramones-mondo-bizarro.jpg'
},
'1012': {
id: 1012,
artist: 'Ramones',
name: 'Acid Eaters',
image: 'https://ng-music.s3-sa-east-1.amazonaws.com/data/ramones-acid-eaters.jpg'
},
'1013': {
id: 1013,
artist: 'Ramones',
name: 'Adios Amigos',
image: 'https://ng-music.s3-sa-east-1.amazonaws.com/data/ramones-adios-amigos.jpg'
}
};