# speechkit/4.2.4/src/Component/Post/Panel/Help/index.js

BeyondWords – AI audio for publishers, version 4.2.4. 43 lines.

- Page: https://pluginprobe.com/plugins/speechkit/4.2.4/code/src/Component/Post/Panel/Help/index.js
- Raw: https://pluginprobe.com/plugins/speechkit/4.2.4/raw/src/Component/Post/Panel/Help/index.js
- Modified: 2023-11-15T21:11:02+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/4.2.4/code/src/Component/Post/Panel/Help/index.js#L10-L20`.

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

export default () => (
	<PanelBody
		title={ __( 'Help', 'speechkit' ) }
		initialOpen={ true }
		className={ 'beyondwords beyondwords-sidebar__help' }
	>
		<PanelRow>
			{ __(
				'For setup instructions, troubleshooting, and FAQs, see our BeyondWords for WordPress guide.',
				'speechkit'
			) }
		</PanelRow>
		<PanelRow>
			<ExternalLink href="https://docs.beyondwords.io/docs-and-guides/content/connect-cms/wordpress/install?utm_source=wordpress&amp;utm_medium=referral&amp;utm_campaign=&amp;utm_content=plugin">
				{ __( 'Setup guide', 'speechkit' ) }
			</ExternalLink>
		</PanelRow>
		<HorizontalRule />
		<PanelRow>
			{ __( 'Need help? Email our support team.', 'speechkit' ) }
		</PanelRow>
		<PanelRow>
			<Button isSecondary href="mailto:support@beyondwords.io">
				<Dashicon icon="email" />
				{ __( 'Email BeyondWords', 'speechkit' ) }
			</Button>
		</PanelRow>
	</PanelBody>
);

```
