add folder list

This commit is contained in:
geoffrey45
2021-11-20 07:41:29 +03:00
parent 12c0669c90
commit cf8ba6554b
10 changed files with 307 additions and 104 deletions
+24
View File
@@ -0,0 +1,24 @@
const folders = [
{
name: "Jim Reeves - 14 number 1s",
},
{
name: "Nadina",
},
{
name: "Lil Peep - Carlifornia girls",
},
{
name: "Legends never die",
},
{
name: "Flashback party",
},
{
name: "HiFi Gold by Elton John",
},
];
export default {
folders,
};
+24
View File
@@ -0,0 +1,24 @@
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
}