Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 697 Bytes

README.md

File metadata and controls

29 lines (24 loc) · 697 Bytes

ckeditor-online

CKEditor 5 editor build generated by the Online builder tool

Install

npm i ckeditor-online

Usage

import { CKEditor } from "@ckeditor/ckeditor5-react";
import Editor from "ckeditor-online";

export function RichTextEditor() {
  return (
    <CKEditor
      editor={Editor}
      data="<p>Hello from CKEditor 5!</p>"
      onChange={(event: any, editor: { getData: () => any }) => {
        const data = editor.getData();
        console.log({ event, editor, data });
      }}
    />
  );
}

ckeditor-online demo