/** * WordPress dependencies */ import { PlainText } from '@safe-wordpress/block-editor'; import { _x } from '@safe-wordpress/i18n'; /** * Internal dependencies */ import './style.scss'; import { useExperimentAttribute } from '../hooks'; export const ExperimentName = (): JSX.Element => { const [ name, setName ] = useExperimentAttribute( 'name' ); return (
</div> ); };