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

Inbox

Secure AI‑aware communication

Welcome to BlackRoad OS
From: BlackRoad Team • Today
); }