I want to load blocks data dynamically to my EditorJS instance. I would like to do something like this:
const editor = new EditorJS();
editor.load({ blocks: my_blocks })
I do not seem to find any documentation on how to do it on https://editorjs.io/
I know that I can load blocks to EditorJS during initialization, but I need to load dynamic data on button click.