mirror of
https://github.com/siteboon/claudecodeui.git
synced 2026-07-01 18:13:03 +08:00
20 lines
452 B
TypeScript
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>
|
|
);
|
|
}
|