I want to display the items in a bootstrap row with 3 columns in each row.But with this code all items are coming in a single row.I want to display
<div className="row">
when I have 3 items.
renderItems:function(){
var items = this.props.items;
return items.map(function(item){
return (
<ItemPreview key={item.id} item={item}/>
)
});
},