UNPKG

reactjs-content-editable

Version:
11 lines (10 loc) 287 B
import React from "react"; export interface ContentEditableProps { html: string; } /** * Component for displaying editable HTML content. * @param html - HTML string to display/edit. */ declare const ContentEditable: React.FC<ContentEditableProps>; export default ContentEditable;