Advertisement
Guest User

Untitled

a guest
Dec 11th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. <tbody>
  3.     {this.createRowTitles(rowTitles,showQuestions,showEmptyColumns)}
  4. </tbody>
  5.  
  6. createRowTitles = (rowTitles,showQuestions,showEmptyColumns) => {
  7.     let table = [];
  8.     var i = 0;
  9.     for(var cell of rowTitles) {
  10.         table.push(
  11.         <tr>
  12.             <td className={[classes.cell,isOverall ? classes.overallCell : classes.categoryCell].join(' ')}>
  13.                 {this.props.cell.value}
  14.             </td>
  15.         </tr>
  16.         )
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement