draftjs-text-editor
TypeScript icon, indicating that this package has built-in type declarations

1.0.3 • Public • Published

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

Prop Type Required Default Description
onChange Function This function is used to capture the html code of text editor
color String #808080 Color 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!

Package Sidebar

Install

npm i draftjs-text-editor

Weekly Downloads

5

Version

1.0.3

License

MIT

Unpacked Size

18.6 kB

Total Files

17

Last publish

Collaborators

  • madan712