Instalé tinymce-react pero no pude ver la interfaz de usuario para tinymce-react solo un área de texto simple como puede ver en la imagen. Entonces, ¿pueden ayudarme a solucionar esto para que funcione normalmente como un editor de texto enriquecido?
import { Editor } from "@tinymce/tinymce-react"; <Editor style={{ margin: "0px !important" }} apiKey="jwg59xe6oa4x0o733wyeew4t655r396pbt4vqgre3mseiyxt" initialValue="<p>This is the initial content of the editor</p>" init={{ height: 500, menubar: false, plugins: [ "advlist autolink lists link image charmap print preview anchor", "searchreplace visualblocks code fullscreen", "insertdatetime media table paste code help wordcount", ], toolbar: "undo redo | formatselect | bold italic backcolor |" + "alignleft aligncenter alignright alignjustify | " + "bullist numlist outdent indent | removeformat | help", }} />