(props)
| 10 | |
| 11 | class CodeEditor extends React.Component { |
| 12 | constructor(props) { |
| 13 | super(props); |
| 14 | |
| 15 | this.aceEditorRef = React.createRef(); |
| 16 | } |
| 17 | |
| 18 | handleResize() { |
| 19 | this.aceEditorRef.current.resize(); |
nothing calls this directly
no outgoing calls
no test coverage detected