/** * WordPress dependencies */ import { PanelBody } from '@safe-wordpress/components'; import { _x } from '@safe-wordpress/i18n'; /** * Internal dependencies */ import { useExperimentAttribute } from '../hooks'; export const Description = (): JSX.Element => { const description = useExperimentAttribute( 'description' ); return ( { description ? description : _x( 'None', 'text (description)', 'nelio-ab-testing' ) } ); };