1.0.3 • Published 12 months ago

draftjs-text-editor v1.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
12 months ago

A simple rich text editor using DraftJs

This simple rich text editor is built using Draft.js and offers basic controls such as bold, italic, and underline. It provides users with a familiar and intuitive editing experience, allowing them to easily apply text formatting and styling to their content. While it may not have all the advanced features of more complex rich text editors, this editor is a great starting point for developers looking to create a custom text editor with basic formatting capabilities.

Please see the DEMO here

Install

npm

npm install --save draftjs-text-editor

yarn

yarn add draftjs-text-editor

Example

import DraftJsEditor from "draftjs-text-editor";

const App = () => {
  const [html, setHtml] = useState("");

  const onChange = (html) => {
    setHtml(html);
  };

  return (
    <div>
      <DraftJsEditor onChange={onChange} />
    </div>
  );
};

export default App;

API

PropTypeRequiredDefaultDescription
onChangeFunctionThis function is used to capture the html code of text editor
colorString#808080Color theme of the text editor

Note: This package is still under development and we welcome contributions from the community. If you would like to contribute, please visit our Git repository and send us a pull request. We appreciate all contributions and thank you for your support!