import React from 'react' type DocSection = 'user-guide' | 'faq' | 'publishing' | 'payment' interface DocLink { id: DocSection title: string file: string } interface DocsSidebarProps { docs: DocLink[] selectedDoc: DocSection onSelectDoc: (docId: DocSection) => void } export function DocsSidebar({ docs, selectedDoc, onSelectDoc }: DocsSidebarProps) { return ( ) }