# NOT RUN {
if (interactive()) {
library(dash)
app <- Dash$new()
app$layout(
htmlDiv(list(
"Within an htmlTable, individual cells can be made with htmlTd",
htmlBr(),
htmlTable(
list(
htmlTr(
list(
htmlTh("Header 1"),
htmlTh("Header 2")
)
),
htmlTr(
list(
htmlTd("this is a cell"),
htmlTd("this is another cell")
)
)
)
)
)
)
)
app$run_server()
}
# }
Run the code above in your browser using DataLab