/** * WordPress dependencies */ import { PanelBody, TextareaControl } from '@safe-wordpress/components'; import { _x } from '@safe-wordpress/i18n'; /** * Internal dependencies */ import { useExperimentAttribute } from '../../hooks'; export const Description = (): JSX.Element => { const [ description, setDescription ] = useExperimentAttribute( 'description' ); return ( ); };