Files
claudecodeui/src/components/shell/view/subcomponents/ShellMinimalView.tsx
2026-06-29 14:19:01 +02:00

20 lines
452 B
TypeScript

import type { RefObject } from 'react';
type ShellMinimalViewProps = {
terminalContainerRef: RefObject<HTMLDivElement>;
};
export default function ShellMinimalView({
terminalContainerRef,
}: ShellMinimalViewProps) {
return (
<div className="relative h-full w-full bg-gray-900">
<div
ref={terminalContainerRef}
className="h-full w-full focus:outline-none"
style={{ outline: 'none' }}
/>
</div>
);
}