Added Sync for Playlists

This commit is contained in:
Shiny Nematoda 2022-06-05 20:35:58 +05:30
parent a88c9081f1
commit e867ab25e9
11 changed files with 287 additions and 41 deletions

View file

@ -12,7 +12,7 @@ export function useRand() {
}
export function useRandColor() {
const r = Math.random().toString(16)
const r = Math.random().toString(16);
return '#' + r.substr(r.length - 6)
}
return '#' + r.substr(r.length - 6);
}