import { useState } from "react"; import { MonacoEditor } from "../ide/MonacoEditor"; export function CodeEditor() { const [content, setContent] = useState(""); return (