In Reactjs I have implemented my suneditor which has a code plugin. The code of plugin is given below I have to add the line breaker component as it is being added with the image and other plugins.
`import hljs from "highlight.js";
import "highlight.js/styles/github.css";
import dialog from 'suneditor/src/plugins/modules/dialog';
Version
Additional context
In Reactjs I have implemented my suneditor which has a code plugin. The code of plugin is given below I have to add the line breaker component as it is being added with the image and other plugins.
`import hljs from "highlight.js"; import "highlight.js/styles/github.css"; import dialog from 'suneditor/src/plugins/modules/dialog';
var plugin_codeDialog = { name: 'customCode', display: 'dialog', title: 'Code', innerHTML: '',
};
export default plugin_codeDialog;`