R/ds-table.R
ds_tbody.Rd
Create a table body section.
ds_tbody(...)
Body rows
A Shiny tag object
ds_tbody(ds_tr(ds_td("John"), ds_td("john@example.com"))) #> <tbody> #> <tr> #> <td>John</td> #> <td>john@example.com</td> #> </tr> #> </tbody>