Use Quill insertText in react-quill Using react-quill

117 views Asked by At

I'm trying to use the quill insert text method, but its not working for react quill.(next.js react)

my code

const ReactQuill = dynamic(() => import('react-quill'), { ssr: false });
const { Quill } = dynamic(() => import('react-quill'), { ssr: false });

Quill.insertText('memes');
0

There are 0 answers