I am working on reactjs and i am using nextjs framework, Right now i am working on "update module"(blog update) using "QuillNoSSRWrapper editor" so right now i am showing user value with "value" tag (value={value}) but then i am unable to type/change anything in editor (something wrong with onchange), How can i fix this ? Here is my current code
const [value, setValue] = useState('');
<QuillNoSSRWrapper modules={modules} onChange={setValue} theme="snow" value={value} />