mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-03 20:13:02 +00:00
59 lines
1.1 KiB
JavaScript
59 lines
1.1 KiB
JavaScript
const songs = [
|
|
{
|
|
title: "Doom",
|
|
album: "Fighting Demons",
|
|
artists: ["Juice Wrld"],
|
|
duration: "03:14",
|
|
},
|
|
{
|
|
title: "Girl Of My Dreams",
|
|
album: "Fighting Demons",
|
|
artists: ["Juice Wrld, ", "Suga [BTS]"],
|
|
duration: "03:14",
|
|
},
|
|
{
|
|
title: "Feline",
|
|
album: "Fighting Demons",
|
|
artists: ["Juice Wrld, ", "Polo G, ", "Lil Yachty"],
|
|
duration: "03:14",
|
|
},
|
|
{
|
|
title: "Rockstar In His Prime",
|
|
album: "Fighting Demons",
|
|
artists: ["Juice Wrld"],
|
|
duration: "03:14",
|
|
},{
|
|
title: "Because I got high",
|
|
album: "Fighting Demons",
|
|
artists: ["Juice Wrld"],
|
|
duration: "03:14",
|
|
},
|
|
{
|
|
title: "Is this love",
|
|
album: "Fighting Demons",
|
|
artists: ["Bob Marley"],
|
|
duration: "03:14",
|
|
},
|
|
{
|
|
title: "I'm a little teapot",
|
|
album: "Fighting Demons",
|
|
artists: ["Juice Wrld"],
|
|
duration: "03:14",
|
|
},
|
|
{
|
|
title: "Don't stop me now",
|
|
album: "Fighting Demons",
|
|
artists: ["Juice Wrld"],
|
|
duration: "03:14",
|
|
},{
|
|
title: "Because I got high",
|
|
album: "Fighting Demons",
|
|
artists: ["Juice Wrld"],
|
|
duration: "03:14",
|
|
},
|
|
];
|
|
|
|
export default {
|
|
songs,
|
|
};
|