import React from "react"; import { CKEditor } from "@ckeditor/ckeditor5-react"; import Editor from "ckeditor5-custom-build"; function ViewEditor(props) { const maxHeight = props.maxHeight || 600; // Default max height 600px return (
); } export default ViewEditor; // import React from "react"; // import { CKEditor } from "@ckeditor/ckeditor5-react"; // import Editor from "ckeditor5-custom-build"; // function ViewEditor(props) { // const maxHeight = props.maxHeight || 600; // return ( //
// // //
// ); // } // export default ViewEditor;