/** * WordPress dependencies */ import { PluginSidebar } from '@safe-wordpress/editor'; import { _x } from '@safe-wordpress/i18n'; /** * External dependencies */ import { SocialMediaSidebar } from '@nelio-content/edit-post'; /** * Internal dependencies */ import { useIsFeatureEnabled } from '~/nelio-content-pages/post/gutenberg/plugin/hooks'; export const SocialSidebar = (): JSX.Element | null => { if ( ! useIsFeatureEnabled( 'social' ) ) { return null; } return ( ); };