-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsongs.js
30 lines (30 loc) · 815 Bytes
/
songs.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
export const songs = [
{
songName: "I Wonder",
artistName: "Kanye West",
duration: "4:03",
albumCover: "./assets/i-wonder.png",
songSrc: "./songs/i-wonder.mp3"
},
{
songName: "Money Tress",
artistName: "Kendrick Lamar",
duration: "6:26",
albumCover: "./assets/money-trees.jpeg",
songSrc: "./songs/money-trees.mp3"
},
{
songName: "Heartbeat",
artistName: "Childish Gambino",
duration: "4:31",
albumCover: "./assets/heartbeat.jpeg",
songSrc: "./songs/heartbeat.mp3"
},
{
songName: "Father Stretch My Hands Pt. 1",
artistName: "Kanye West",
duration: "2:15",
albumCover: "./assets/father-i-stretch-my-hands-pt-1.png",
songSrc: "./songs/father-stretch-my-hands-pt-1.mp3"
}
];