@progress/kendo-react-editor
Version:
React Editor enables users to create rich text content through a WYSIWYG interface. KendoReact Editor package
19 lines (18 loc) • 760 B
JavaScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import * as r from "react";
import { Editor as d } from "./Editor.mjs";
import { useMergedRef as f, useWebMcpRegister as m } from "@progress/kendo-react-common";
const a = r.forwardRef((e, t) => {
const [o, i] = f(t);
return m("editor", o, e, e.webMcp), /* @__PURE__ */ r.createElement(d, { ...e, ref: i });
});
a.displayName = "KendoReactEditor";
export {
a as EditorWrapper
};