UNPKG

grapesjs-clot

Version:

Free and Open Source Web Builder Framework

18 lines (15 loc) 360 B
import ComponentTableBody from './ComponentTableBody'; import { toLowerCase } from 'utils/mixins'; const type = 'thead'; export default ComponentTableBody.extend( { defaults: { ...ComponentTableBody.prototype.defaults, type, tagName: type } }, { isComponent: el => toLowerCase(el.tagName) === type } );