PluginProbe
Genesis Blocks / trunk
Genesis Blocks vtrunk
3.1.11 trunk 1.0.0 1.1.0 1.1.1 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.3.0 1.4.0 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 2.0.0 3.0.0 3.0.1 3.1.0 3.1.1 3.1.10 All 32 releases
genesis-blocks / src / utils / helpers / remove-paragraph.js

remove-paragraph.js in Genesis Blocks trunk, at src/utils/helpers/remove-paragraph.js

4 lines 129 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 export default function removeParagraph(component) {
2 return component?.type === 'p' ? component?.props?.children : component;
3 }
4