I am using dynamic import in nextjs to overcome the window not found error. I then get the error
Error: element with ID «editorjs-container» is missing. Pass correct holder's ID.
const Editor = dynamic(
() => import('@stfy/react-editor.js'),
{ ssr: false }
)