import type { CSSProperties, ReactNode } from "react"; interface WorkspacePageShellProps { title: string; headerRight?: ReactNode; fullWidth?: boolean; className?: string; style?: CSSProperties; children: ReactNode; } function WorkspacePageShell({ title, headerRight, fullWidth, className, style, children, }: WorkspacePageShellProps) { return (
{headerRight ?
{headerRight}
: null}
{children}
); } export default WorkspacePageShell;