Experimental video player

This commit is contained in:
Aleksi Lassila
2023-06-19 20:44:36 +03:00
parent 3429d2c5ee
commit b39bf97b8a
21 changed files with 21264 additions and 146 deletions

View File

@@ -35,7 +35,7 @@ export function request<T, A>(fetcher: (arg: A) => Promise<T>, args: A | undefin
fetcher(arg)
.then((d) => {
console.log('got data', d);
console.log('request data', d);
data.set(d);
})
.catch((e) => error.set(e))