MCPcopy Create free account
hub / github.com/Fibi66/FeiControl / MarkdownEditorProps

Interface MarkdownEditorProps

src/components/MarkdownEditor.tsx:6–12  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected