| 1 |
/** |
| 2 |
* WordPress dependencies |
| 3 |
*/ |
| 4 |
import { __ } from '@wordpress/i18n'; |
| 5 |
import { PanelBody, PanelRow } from '@wordpress/components'; |
| 6 |
|
| 7 |
/** |
| 8 |
* Internal dependencies |
| 9 |
*/ |
| 10 |
import ContentId from '../content-id'; |
| 11 |
|
| 12 |
export function DataPanel() { |
| 13 |
return ( |
| 14 |
<PanelBody |
| 15 |
title={ __( 'Data', 'speechkit' ) } |
| 16 |
initialOpen={ false } |
| 17 |
className="beyondwords beyondwords-sidebar__data" |
| 18 |
> |
| 19 |
<ContentId wrapper={ PanelRow } /> |
| 20 |
</PanelBody> |
| 21 |
); |
| 22 |
} |
| 23 |
|
| 24 |
export default DataPanel; |
| 25 |
|