react-quill
react-quill copied to clipboard
insertText is not coming in refs in react-quill
Please look into the issue
I need insertText
too. Please help. :(
It looks like v2.0 has been updated, but the Docs and demos have not been updated.
You can access insertText()
like this:
const ed = quillRef.current.getEditor();
ed.editor.insertText(ed.getSelection().index, "★");