feat(nvim): implement basic layout

This commit is contained in:
Pihkaal
2024-05-30 15:44:49 +02:00
parent e21d337d53
commit 3832a7ca52
9 changed files with 66 additions and 13 deletions

View File

@@ -30,9 +30,9 @@ export const Music = () => {
if (metadata) return;
void fetch(song)
.then((r) => r.blob())
.then((b) => parseBlob(b))
.then((m) => {
.then(r => r.blob())
.then(b => parseBlob(b))
.then(m => {
if (!audio.current) return;
setMetadata(m);