# NOT RUN {
if (interactive()) {
library(dash)
app <- Dash$new()
app$layout(htmlDiv(list(
htmlFieldset(
children = list('Choose your favorite Dash HTML component',
dccRadioItems(
options=list(
list("label"= "htmlDiv", "value"= "htmlDiv"),
list("label"= "htmlBase", "value"= "htmlBase"),
list("label"= "htmlArticle", "value"= "htmlArticle")
)
)
)
)
)
)
)
app$run_server()
}
# }
Run the code above in your browser using DataLab