boxcast-playlist/index.html
2022-04-25 17:23:23 -04:00

26 lines
487 B
HTML

<!DOCTYPE html>
<html>
<head></head>
<body>
<div style="max-width:500px; margin: 0 auto;">
<div id="boxcast"></div>
</div>
<script type="module">
const Channel = {
Basics: "sfz7ja3rlpoous6usu8a",
Sunday: "gzahmhugrzogttfdtbjj",
Dev: "r3os2zfdnhlquhuypgtp"
};
import { h, render } from "https://esm.sh/preact";
import App from "./app.js";
render(
h(App, {channel:Channel.Basics, interval:50000}),
document.querySelector("#boxcast")
);
</script>
</body>
</html>