PluginProbe
BeyondWords – AI audio for publishers / 4.4.0
BeyondWords – AI audio for publishers v4.4.0
7.1.0 trunk 4.0.0 4.0.1 4.0.2 4.0.3 4.0.4 4.0.5 4.0.6 4.1.0 4.1.1 4.1.2 4.2.0 4.2.1 4.2.2 4.2.3 4.2.4 4.3.0 4.4.0 4.5.0 4.5.1 4.6.0 4.6.1 4.6.2 4.7.0 All 43 releases
speechkit / src / Component / Plugin / Sidebar / index.js

index.js in BeyondWords – AI audio for publishers 4.4.0, at src/Component/Plugin/Sidebar/index.js

34 lines 822 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * WordPress dependencies
3 */
4 import { __ } from '@wordpress/i18n';
5 import { PluginSidebar, PluginSidebarMoreMenuItem } from '@wordpress/edit-post';
6 import { Component, Fragment } from '@wordpress/element';
7
8 /**
9 * Internal dependencies
10 */
11 import HelpPanel from '../../Post/Panel/Help';
12 import InspectPanel from '../../Post/Panel/Inspect';
13 import StatusPanel from '../../Post/Panel/Status';
14
15 export default class Sidebar extends Component {
16 render() {
17 return (
18 <Fragment>
19 <PluginSidebarMoreMenuItem target="plugin-sidebar">
20 { __( 'BeyondWords', 'speechkit' ) }
21 </PluginSidebarMoreMenuItem>
22 <PluginSidebar
23 name="plugin-sidebar"
24 title={ __( 'BeyondWords', 'speechkit' ) }
25 >
26 <StatusPanel />
27 <HelpPanel />
28 <InspectPanel />
29 </PluginSidebar>
30 </Fragment>
31 );
32 }
33 }
34