Skip to contents

Create a table header section.

Usage

ds_thead(...)

Arguments

...

Header rows

Value

A Shiny tag object

Examples

ds_thead(ds_tr(ds_th("Name"), ds_th("Email")))
#> <thead>
#>   <tr>
#>     <th scope="col">Name</th>
#>     <th scope="col">Email</th>
#>   </tr>
#> </thead>