diff --git a/src/TableCell.tsx b/src/TableCell.tsx index 2bee8d7..7ec7a84 100644 --- a/src/TableCell.tsx +++ b/src/TableCell.tsx @@ -71,6 +71,10 @@ export class TableCell extends React.PureComponent { content = ( {this.props.children.toString()} ); + } elseif (Array.isArray(this.props.children) { + content = ( + {this.props.children.join('')} + ); } else { content = this.props.children; }