8 lines
178 B
JavaScript
8 lines
178 B
JavaScript
var BlockLayout = {
|
|
name: 'BlockLayout',
|
|
functional: true,
|
|
render: function render(createElement, content) {
|
|
return content.children;
|
|
}
|
|
};
|
|
export default BlockLayout; |