Gutenberg Inspector Controls

TextControl is from wp.components not wp.blocks.

const {
    registerBlockType,
    RichText,
    AlignmentToolbar,
    BlockControls,
    InspectorControls,
} = wp.blocks;
const {
    TextControl
} = wp.components;

Changing that I was able to get your block to work fine instead of error in Gutenberg 2.2.0.

enter image description here

Leave a Comment