summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/jetpack/extensions/blocks/seo/index.js')
-rw-r--r--plugins/jetpack/extensions/blocks/seo/index.js39
1 files changed, 0 insertions, 39 deletions
diff --git a/plugins/jetpack/extensions/blocks/seo/index.js b/plugins/jetpack/extensions/blocks/seo/index.js
deleted file mode 100644
index 98bdca97..00000000
--- a/plugins/jetpack/extensions/blocks/seo/index.js
+++ /dev/null
@@ -1,39 +0,0 @@
-/**
- * External dependencies
- */
-import { __ } from '@wordpress/i18n';
-import { Fragment } from '@wordpress/element';
-import { PanelBody } from '@wordpress/components';
-import { PluginPrePublishPanel } from '@wordpress/edit-post';
-
-/**
- * Internal dependencies
- */
-import './editor.scss';
-import JetpackPluginSidebar from '../../shared/jetpack-plugin-sidebar';
-import SeoPanel from './panel';
-
-export const name = 'seo';
-
-export const settings = {
- render: () => (
- <Fragment>
- <JetpackPluginSidebar>
- <PanelBody title={ __( 'SEO Description', 'jetpack' ) }>
- <SeoPanel />
- </PanelBody>
- </JetpackPluginSidebar>
- <PluginPrePublishPanel
- initialOpen
- id="seo-title"
- title={
- <span id="seo-defaults" key="seo-title-span">
- { __( 'SEO Description', 'jetpack' ) }
- </span>
- }
- >
- <SeoPanel />
- </PluginPrePublishPanel>
- </Fragment>
- ),
-};