import { createElement, Fragment } from '@wordpress/element' import OptionsPanel from '../OptionsPanel' import { capitalizeFirstLetter } from '../GenericOptionType' const Group = ({ renderingChunk, value, onChange, purpose, hasRevertButton }) => renderingChunk.map(conditionOption => { const { label, options, id, attr = {} } = conditionOption const groupContents = ( ) return (
{label && (
)}
{groupContents}
) }) export default Group