Create webamp

This commit is contained in:
Ulysia 2024-08-28 08:47:44 +02:00 committed by GitHub
parent b6ac83dc6a
commit 4c95eb05d9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

9
content/webamp Normal file
View file

@ -0,0 +1,9 @@
# Webamp
<div id="app"></div>
<script src="https://unpkg.com/webamp"></script>
<script>
const app = document.getElementById("app")
const webamp = new Webamp();
webamp.renderWhenReady(app);
</script>