Open
Description
const [mark, setMark] = useState('Enter Text Here');
const [visible, setVisible] = useState(true);
<div>
<label htmlFor="body">
Body:
</label>
<MarkdownEditor
value={mark}
visible={visible}
onChange={(value, viewUpdate) => setMark(value)}
height="500px"
/>
</div>
In the above code, when ever I start typing because of state update, the cursor moves out of the markdown window, so how can i type continuously?
Metadata
Metadata
Assignees
Labels
No labels