draftjs-text-editor
v1.0.3
Published
draftjs-text-editor is a lightweight wrapper around Draft.js, providing an easy-to-use rich text editor for React applications
Downloads
49
Maintainers
Readme
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!