Skip to contents

Create a table body section.

Usage

ds_tbody(...)

Arguments

...

Body rows

Value

A Shiny tag object

Examples

ds_tbody(ds_tr(ds_td("John"), ds_td("john@example.com")))
#> <tbody>
#>   <tr>
#>     <td>John</td>
#>     <td>john@example.com</td>
#>   </tr>
#> </tbody>