react-md-editor
react-md-editor copied to clipboard
Why is there no event listener for text selection?
I can't find the text selection event listener in the documentation.
@dongmucat
<MDEditor
textareaProps={{
+ onSelect: () => {
+ console.log('onSelect');
+ },
}}
style={{ width: '100%' }}
value={value}
onChange={onChange}
/>