import React from 'react'; import WindowFrame from '../shared/WindowFrame'; import { WindowState } from '../../hooks/useWindowManager'; type Props = { state: WindowState; onClose: (id: string) => void; onMinimize: (id: string) => void; onMaximize: (id: string) => void; onDragStart: (id: string, event: React.MouseEvent) => void; onFocus: (id: string) => void; }; export default function PiWindow({ state, ...handlers }: Props) { return (

Connected Devices

4 devices online · 1 Jetson Orin Nano

Jetson Orin NanoOnline
Lucidia‑Pi‑01Online
); }