CKEditor 5 and ReactJS: I can't edit the toolbar
问题 I'm reading the documentation (link) but I'm not sure about how to edit the toolbar. This is the editor component: import React, { Component } from 'react'; import CKEditor from '@ckeditor/ckeditor5-react'; import ClassicEditor from '@ckeditor/ckeditor5-build-classic'; class EditorComponent extends Component { constructor(props) { super(props); this.state = { id: props.id, content: props.content, handleWYSIWYGInput: props.handleWYSIWYGInput, editor: ClassicEditor } } render() { return ( <div