I have been trying to add react-quill to my application but for some reason I have not been able to succeed.
I can add the toolbar but it shows up like this:
1132×180 3.24 KB
If I then add theme=“snow” to the component it looks like this:
1140×222 4.23 KB
It turned out it had to do with the way it was added in package.json.
If someone else runs into this problem check how it added there.
In my project I had in my package.json file something like this:
“react-quill”: “version number”
But in an other project there was :
“react-quill”: “git+https://github.com/zenoamaro/react-quill.git”
After making the change and running npm install again it worked!