| Current Path : /var/www/html/reddsis/node_modules/grapesjs-tabs/src/ |
| Current File : /var/www/html/reddsis/node_modules/grapesjs-tabs/src/index.js |
import loadComponents from './components/index';
import loadBlocks from './blocks';
import defOptions from './options';
export default (editor, opts = {}) => {
const options = {
...defOptions,
...opts
};
// Add components
loadComponents(editor, options);
// Add blocks
loadBlocks(editor, options);
};