- {playlists.map((playlist) => {
- return (
-
- {playlist.Title}
-
- );
- })}
-
- Stop
+ <>
+
+
+ {playlists.map((playlist) => {
+ return (
+
+ {playlist.Title}
+
+ );
+ })}
+
+ Stop
+
-
-
+
+
+
+ >
);
}
diff --git a/src/app/root.tsx b/src/app/root.tsx
index 1feb12f..804dddf 100644
--- a/src/app/root.tsx
+++ b/src/app/root.tsx
@@ -3,6 +3,7 @@ import { createRoot } from "react-dom/client";
import { trigger, on } from "./events";
import Playlists from "./playlist";
import ws from "./ws";
+import Controls from "./controls";
function Content() {
ws.onmessage = (e) => {
@@ -14,6 +15,7 @@ function Content() {
<>
Playlists
+
>
);
}