+ {this.state.selectedItems.length !== this.props.items.length ? (
+
+ Select All
+
+ ) : (
+ null
+ )}
+
+ {this.state.selectedItems.length > 0 ? (
+
+ Clear
+
+ ) : (
+ null
+ )}
+
+ {this._getFilteredItems().map((item, index) => {
+ return (
+
+ {item}
+
+ );
+ })}
+
+ );
+ },
+
+ render () {
+ return (
+