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

Interface EditorModalProps

src/components/FileBrowser.tsx:95–100  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

93
94// ─── Monaco Editor Modal ───────────────────────────────────────────────────────
95interface EditorModalProps {
96 workspace: string;
97 filePath: string;
98 fileName: string;
99 onClose: () => void;
100}
101
102function EditorModal({ workspace, filePath, fileName, onClose }: EditorModalProps) {
103 const [content, setContent] = useState<string>("");

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected