import TitleBar from "./TitleBar"; import { ReactNode } from "react"; interface DesktopShellProps { children: ReactNode; title?: string; } export default function DesktopShell({ children, title }: DesktopShellProps) { return (
{children}
); }