Your IP : 216.73.216.79


Current Path : /var/www/html/reddsis/node_modules/grapesjs-tabs/src/
Upload File :
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);
};