Index: src/wp-includes/js/media/views/heading.js
===================================================================
--- src/wp-includes/js/media/views/heading.js	(nonexistent)
+++ src/wp-includes/js/media/views/heading.js	(working copy)
@@ -0,0 +1,30 @@
+/**
+ * wp.media.view.Heading
+ *
+ * @class
+ * @augments wp.media.View
+ * @augments wp.Backbone.View
+ * @augments Backbone.View
+ */
+var Heading = wp.media.View.extend({
+	tagName: function() {
+		return this.options.level || 'h1'
+	},
+	className: 'media-views-heading',
+
+	initialize: function() {
+
+		if ( this.options.cssclass ) {
+			this.$el.addClass( this.options.cssclass );
+		}
+
+		this.text = this.options.text;
+	},
+
+	render: function() {
+		this.$el.html( this.text );
+		return this;
+	}
+});
+
+module.exports = Heading;
