reactjs-content-editable
Version:
React content editable component
12 lines • 400 B
JavaScript
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