UNPKG

grapesjs-tabs

Version:

Simple tabs component plugin for GrapesJS

17 lines (13 loc) 324 B
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); };