import ReactMarkdown from 'react-markdown'; import remarkGfm from 'remark-gfm'; interface EditorProps { content: string; onChange: (content: string) => void; placeholder?: string; } export function Editor({ content, onChange, placeholder = '# Start writing\n\nYour markdown here...' }: EditorProps) { return (