QuillJS doesn\'t come with default undo/redo buttons. I\'m trying to add them to the toolbar. Quill has a folder with the undo/redo icons saved. In the node_modules, there\'
I just want to add something for developers who are using react-quill. on this line:
var icons = Quill.import("ui/icons");
You do not get Quill reference. so instead of the above line you can use:
var icons = ReactQuill.Quill.import("ui/icons");
This solves the problem for ReactQuill.