| 136 | } |
| 137 | |
| 138 | interface ShellEditorProps { |
| 139 | value: string |
| 140 | onChange: (value: string) => void |
| 141 | placeholder?: string |
| 142 | className?: string |
| 143 | } |
| 144 | |
| 145 | function ShellEditor({ value, onChange, placeholder, className = '' }: ShellEditorProps) { |
| 146 | const textareaRef = useRef<HTMLTextAreaElement>(null) |
nothing calls this directly
no outgoing calls
no test coverage detected