import { useRef } from 'react' /** * InlineTemplateEditor - Template-Editor für Inline-Prompts * * Props: * - value: Template-String * - onChange: (template) => void * - onPlaceholderPick: () => void - Öffnet Placeholder Picker * - textareaRef: Ref für Cursor-Position (von Parent) */ export function InlineTemplateEditor({ value, onChange, onPlaceholderPick, textareaRef }) { return (