diff --git a/src/blocks/features-list/index.js b/src/blocks/features-list/index.js
index 8415d3c..937e230 100644
--- a/src/blocks/features-list/index.js
+++ b/src/blocks/features-list/index.js
@@ -4,6 +4,7 @@
* A simple block to show a feature
*/
import icons from "../icons";
+import Inspector from './inspector';
/**
* Internal block libraries
*/
@@ -15,16 +16,12 @@ const {
MediaUpload,
BlockControls,
InnerBlocks,
- InspectorControls
} = wp.blocks; // Import registerBlockType() from wp.blocks as well as Editable so we can use TinyMCE
const {
Button,
Toolbar,
Tooltip,
- Dashicon,
- PanelBody,
- PanelRow,
- TextControl
+ Dashicon
} = wp.components;
/**
* Register: aa Gutenberg Block.
@@ -133,24 +130,12 @@ registerBlockType("cgb/block-feature", {
return [
!!props.focus && (
-
-
-
-
-
-
-
-
-
-
+
),
@@ -183,7 +168,7 @@ registerBlockType("cgb/block-feature", {
)}
-
+
-
+
{props.attributes.title}
{props.attributes.description}
diff --git a/src/blocks/features-list/inspector.js b/src/blocks/features-list/inspector.js
new file mode 100644
index 0000000..e8f5470
--- /dev/null
+++ b/src/blocks/features-list/inspector.js
@@ -0,0 +1,50 @@
+/**
+ * Internal block libraries
+ */
+const { __ } = wp.i18n;
+const { Component } = wp.element;
+const {
+ InspectorControls,
+ BlockDescription,
+} = wp.blocks;
+const {
+ Toolbar,
+ Button,
+ PanelBody,
+ PanelRow,
+ TextControl
+} = wp.components;
+
+/**
+ * Create an Inspector Controls wrapper Component
+ */
+export default class Inspector extends Component {
+
+ constructor( props ) {
+ super( ...arguments );
+ }
+
+ render() {
+ return (
+
+
+
+
+
+
+
+
+
+
+ );
+ }
+
+}
\ No newline at end of file
diff --git a/src/blocks/section/index.js b/src/blocks/section/index.js
index e225f80..e5c2eaa 100644
--- a/src/blocks/section/index.js
+++ b/src/blocks/section/index.js
@@ -138,7 +138,6 @@ registerBlockType("cgb/block-section", {
getEditWrapperProps(attributes) {
const { alignment } = attributes;
- console.log(validAlignments);
if (-1 !== validAlignments.indexOf(alignment)) {
return { "data-align": alignment };