This repository was archived by the owner on Mar 21, 2025. It is now read-only.
This repository was archived by the owner on Mar 21, 2025. It is now read-only.
Closed
Description
Hi, thanks for your repo. I am trying to create a table with multiple rows but the TableRow Component doesn't seem to work properly. Below code:
`
<TableRow>
<DataTableCell weighting={0.3} getContent={() => 'First'}/>
<DataTableCell weighting={0.3} getContent={() => 'First'}/>
<DataTableCell getContent={() => 'First'}/>
<DataTableCell getContent={() => 'First'}/>
<DataTableCell getContent={() => 'First'}/>
</TableRow>
<TableRow>
<DataTableCell weighting={0.3} getContent={() => 'First'}/>
<DataTableCell weighting={0.3} getContent={() => 'First'}/>
<DataTableCell getContent={() => 'First'}/>
<DataTableCell getContent={() => 'First'}/>
<DataTableCell getContent={() => 'First'}/>
</TableRow>
`
renders this result:
that is, both rows one on top of the other instead of below. Any help? Thanks!