import { createElement, Component, useState, useContext, Fragment } from '@wordpress/element' import cls from 'classnames' import { DragDropContext } from '../../../../options/options/ct-footer-builder' import Panel, { PanelMetaWrapper } from '../../../../options/options/ct-panel' import { getValueFromInput } from '../../../../options/helpers/get-value-from-input' import { __ } from 'ct-i18n' const PanelsManager = () => { const secondaryItems = ct_customizer_localizations.header_builder_data.secondary_items.footer const allItems = ct_customizer_localizations.header_builder_data.footer const { builderValueCollection, builderValue, builderValueDispatch, panelsActions } = useContext(DragDropContext) const allSections = builderValueCollection.sections.filter( ({ id }) => id !== 'type-2' && id !== 'type-3' && id.indexOf('ct-custom') === -1 ) return (
) } export default PanelsManager