interface FileEditorProps { content: string; onChange: (content: string) => void; readOnly?: boolean; filePath?: string; } export function FileEditor({ content, onChange, readOnly, filePath }: FileEditorProps) { return (