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 BlackstreamWindow({ state, ...handlers }: Props) { return (

Trending Streams

OS demos, agent orchestration runs, and live RoadChain dashboards

Embedded stream player coming soon.
); }