1 row = this.props.cells.map(function(cell, i) {
2
3 if(cell.URL != null && cell.URL.length > 0){
4 return <td className={cell.Meta.HTMLClass} key={i}>{cell.Text}</td>;
5 }
6 else {
7 return <td className={cell.Meta.HTMLClass} key={i}>{cell.Text}</td>;
8 }
9
10 }.bind(this));
11