This is driving me nuts. I have a use case where I insert a node in one editor and it should insert the node in the subsequent editors. I am rendering the components only when they are clicked so if I go with the traditional way of referencing,
ref={editor => {
this.editorRef = editor;
}}
the next editors reference in the parent components model will be null. By the way, parent component model has editorRef
model as
editorRef = {
editor0: null,
editor1: null
};
Previously, I updated them easily when they are rendering in one go but here they render as per the navigation button they click.