mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 04:23:01 +00:00
24 lines
423 B
JavaScript
24 lines
423 B
JavaScript
const songs = [
|
|
{
|
|
title: "Loved by the best",
|
|
album: "Love songs",
|
|
artists: ["Don Williams,", "Kenny Rogers"],
|
|
duration: "03:14",
|
|
},
|
|
{
|
|
title: "Loved by the best",
|
|
album: "Love songs",
|
|
artists: ["Don Williams"],
|
|
duration: "03:14",
|
|
},
|
|
{
|
|
title: "Loved by the best",
|
|
album: "Love songs",
|
|
artists: ["Don Williams"],
|
|
duration: "03:14",
|
|
},
|
|
];
|
|
|
|
export default {
|
|
songs
|
|
} |