# speechkit/7.0.0/src/editor/components/data-panel/index.js

BeyondWords – AI audio for publishers, version 7.0.0. 25 lines.

- Page: https://pluginprobe.com/plugins/speechkit/7.0.0/code/src/editor/components/data-panel/index.js
- Raw: https://pluginprobe.com/plugins/speechkit/7.0.0/raw/src/editor/components/data-panel/index.js
- Modified: 2026-08-12T09:46:22+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/speechkit/7.0.0/code/src/editor/components/data-panel/index.js#L10-L20`.

```javascript
/**
 * WordPress dependencies
 */
import { __ } from '@wordpress/i18n';
import { PanelBody, PanelRow } from '@wordpress/components';

/**
 * Internal dependencies
 */
import ContentId from '../content-id';

export function DataPanel() {
	return (
		<PanelBody
			title={ __( 'Data', 'speechkit' ) }
			initialOpen={ false }
			className="beyondwords beyondwords-sidebar__data"
		>
			<ContentId wrapper={ PanelRow } />
		</PanelBody>
	);
}

export default DataPanel;

```
