Page loaded with Editor visible
Unhandled runtime error is shown

Downgrade @ckeditor/ckeditor5-react to 2.1,0 - error does not happen anymore. 3,0 breaks this
As mentioned on the [email protected] page, you need to change the way how the CKEditor component is imported.
It should be:
import { CKEditor } from '@ckeditor/ckeditor5-react';
The package (@ckeditor/ckeditor5-react) exports more than a single component since 3.0.0. That's why we needed to change it.
Most helpful comment
As mentioned on the
[email protected]page, you need to change the way how theCKEditorcomponent is imported.It should be:
The package (
@ckeditor/ckeditor5-react) exports more than a single component since 3.0.0. That's why we needed to change it.