import type { RefObject } from 'react'; type ShellMinimalViewProps = { terminalContainerRef: RefObject; }; export default function ShellMinimalView({ terminalContainerRef, }: ShellMinimalViewProps) { return (
); }