react-quill
react-quill copied to clipboard
how do i implement custom functionality of uploading an image in the react quill ?
how do i implement custom functionality of uploading an image in the react quill ?
possible features
- drag and drop
- insert file
- insert link
I used this plug in Quill.register("modules/imageUploader", ImageUploader);
const modules = { imageUploader: { upload: uploadImage, }, };
you then implement your own code in uploadImage function
<ReactQuill {...props} modules={modules} />;