// type Props = { // containerRef: React.MutableRefObject, // editorRef: React.MutableRefObject, // init: () => void // } export function Code(Props) { const { editorRef, containerRef, init } = Props; return (
{ containerRef.current = el; if (!editorRef.current) { init(); } }} >
); }