# NOT RUN {
if (interactive() && require(dash)) {
library(dash)
library(dashHtmlComponents)
app <- Dash$new()
app$layout(
htmlDiv(list(
htmlTable(
list(
# the following row contains headers
htmlTr(
list(
htmlTh("Header 1"),
htmlTh("Header 2")
)
)
)
)
)
)
)
app$run_server()
}
# }
Run the code above in your browser using DataLab