| 4 | import { Save, AlertCircle } from "lucide-react"; |
| 5 | |
| 6 | interface MarkdownEditorProps { |
| 7 | content: string; |
| 8 | onChange: (content: string) => void; |
| 9 | onSave: () => Promise<void>; |
| 10 | hasUnsavedChanges: boolean; |
| 11 | disabled?: boolean; |
| 12 | } |
| 13 | |
| 14 | export function MarkdownEditor({ |
| 15 | content, |
nothing calls this directly
no outgoing calls
no test coverage detected