# NOT RUN {
if (interactive()) {
library(dash)
app <- Dash$new()
app$layout(
htmlDiv(list(
"You can make an unordered list with htmlUl",
htmlBr(),
htmlUl(
children = list(
htmlLi("Some item"),
htmlLi("Some other item")
)
)
)
)
)
app$run_server()
}
# }
Run the code above in your browser using DataLab