R/ds-table.R
ds_thead.Rd
Create a table header section.
ds_thead(...)
Header rows
A Shiny tag object
ds_thead(ds_tr(ds_th("Name"), ds_th("Email"))) #> <thead> #> <tr> #> <th scope="col">Name</th> #> <th scope="col">Email</th> #> </tr> #> </thead>