UNPKG

reactjs-content-editable

Version:
12 lines 400 B
import React from "react"; /** * Component for displaying editable HTML content. * @param html - HTML string to display/edit. */ var ContentEditable = function (_a) { var html = _a.html; // For simplicity, just displaying the HTML content for now return React.createElement("div", null, "Test"); }; export default ContentEditable; //# sourceMappingURL=ContentEditable.js.map