(children, options)
| 733 | } |
| 734 | |
| 735 | function TableRow(children, options) { |
| 736 | options = options || {}; |
| 737 | return { |
| 738 | type: types.tableRow, |
| 739 | children: children, |
| 740 | isHeader: options.isHeader || false |
| 741 | }; |
| 742 | } |
| 743 | |
| 744 | function TableCell(children, options) { |
| 745 | options = options || {}; |
nothing calls this directly
no outgoing calls
no test coverage detected