import React, { createRef, PureComponent } from 'react'; export class MockCodeEditor extends PureComponent { ref = createRef(); setSelection() {} focus() { this.ref.current?.focus(); } render() { const { id, onChange, placeholder, defaultValue } = this.props; return