aethex-forge/client/components/DesktopShell.tsx
2025-12-05 01:06:47 -07:00

21 lines
469 B
TypeScript

import TitleBar from "./TitleBar";
import { ReactNode } from "react";
export default function DesktopShell({ children }: { children: ReactNode }) {
return (
<div
style={{
width: "100vw",
height: "100vh",
background: "#030712",
color: "#e5e7eb",
display: "flex",
flexDirection: "column",
}}
>
<TitleBar />
<div style={{ flex: 1, overflow: "hidden" }}>{children}</div>
</div>
);
}