type StandaloneShellHeaderProps = { title: string; isCompleted: boolean; onClose?: (() => void) | null; }; export default function StandaloneShellHeader({ title, isCompleted, onClose = null, }: StandaloneShellHeaderProps) { return (

{title}

{isCompleted && (Completed)}
{onClose && ( )}
); }