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