draft-js-link-detection-plugin
npm install draft-js-link-detection-pluginnpm i draft-js-link-detection-plugin`$3
`javascript
import Editor from 'draft-js-plugins-editor';
import createLinkDetectionPlugin from 'draft-js-link-detection-plugin';const linkDetectionPlugin = createLinkDetectionPlugin();
const plugins = [linkDetectionPlugin];
ref={editorRef}
plugins={plugins}
editorState={editorState}
onChange={handleChangeEditor}
/>
``