import MEditor from '@monaco-editor/react'; import React from 'react'; function Editor({ value }: EditorProps): JSX.Element { return ( ); } interface EditorProps { value: React.MutableRefObject; } export default Editor;