| ds_table | R Documentation |
Create a styled table using Designsystemet styles.
ds_table(..., size = NULL, class = NULL)
... |
Table content (thead, tbody, etc.) |
size |
Size variant ("sm", "md", "lg") |
class |
Additional CSS classes |
A Shiny tag object
ds_table(
ds_thead(
ds_tr(
ds_th("Name"),
ds_th("Email")
)
),
ds_tbody(
ds_tr(
ds_td("John Doe"),
ds_td("john@example.com")
)
)
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.