From aaedd0e667c285370f3938aeb1972a5f3dcf583d Mon Sep 17 00:00:00 2001 From: talksik Date: Tue, 31 Mar 2026 13:36:51 -0700 Subject: [PATCH] use deps in separate window render process --- js/src/autoplay/AutoplayApp.tsx | 36 +++++++++++++++++++++++++++++++-- 1 file changed, 34 insertions(+), 2 deletions(-) diff --git a/js/src/autoplay/AutoplayApp.tsx b/js/src/autoplay/AutoplayApp.tsx index 2f1b651..cabf1d8 100644 --- a/js/src/autoplay/AutoplayApp.tsx +++ b/js/src/autoplay/AutoplayApp.tsx @@ -1,7 +1,39 @@ +import { Mic, X } from 'lucide-react'; + export function AutoplayApp() { + const handleClose = () => { + window.electronWindow.closeAutoplay(); + }; + return ( -
-

Autoplay Window

+
+
+ + +
+
+
+ JD +
+ +
+
+

john.doe

+

+ Playing audio... +

+
+
+ +
+
+
+
); }