diff --git a/editor/header/index.js b/editor/header/index.js
index e2b1070c6a4d3b..ec60075fae70be 100644
--- a/editor/header/index.js
+++ b/editor/header/index.js
@@ -1,3 +1,14 @@
+/**
+ * External dependencies
+ */
+import { connect } from 'react-redux';
+
+/**
+ * WordPress dependencies
+ */
+import { sprintf, _n, __ } from 'i18n';
+import { IconButton } from 'components';
+
/**
* Internal dependencies
*/
@@ -5,8 +16,38 @@ import './style.scss';
import ModeSwitcher from './mode-switcher';
import SavedState from './saved-state';
import Tools from './tools';
+import { getSelectedBlocks } from '../selectors';
+
+function Header( { selectedBlocks, onRemove, onDeselect } ) {
+ const count = selectedBlocks.length;
+
+ if ( count ) {
+ return (
+
+
+ { sprintf( _n( '%d block selected', '%d blocks selected', count ), count ) }
+
+
+ onRemove( selectedBlocks ) }
+ focus={ true }
+ >
+ { __( 'Delete' ) }
+
+
+
+ onDeselect() }
+ />
+
+
+ );
+ }
-function Header() {
return (