Files
swingmusic-extended/src/data/songs.js
T
2021-11-20 07:41:29 +03:00

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
}