UNPKG

bootstrap5-p1

Version:

A custom GrapesJS plugin for Bootstrap 5.1.3.

13 lines (11 loc) 381 B
import block from "./block.js"; /** * Add the block to the editor * @param {Editor} editor - Grapes JS Editor instance * @param {Object} opts - Global block options * @param {Object} blockProps - Specific block options */ export default (editor, opts = {}, blockProps) => { // Add the block to the editor editor.BlockManager.add("column3-9", block(opts, blockProps)); };