/** * WordPress dependencies */ import { PanelBody } from '@safe-wordpress/components'; import { _x } from '@safe-wordpress/i18n'; /** * External dependencies */ import { References, usePanelToggling } from '@nelio-content/edit-post'; /** * Internal dependencies */ import { useIsFeatureEnabled } from '~/nelio-content-pages/post/gutenberg/plugin/hooks'; export const ReferencesPanel = (): JSX.Element | null => { const [ isPanelOpen, togglePanel ] = usePanelToggling( 'references' ); if ( ! useIsFeatureEnabled( 'references' ) ) { return null; } return ( ); };