# NOT RUN {
if (interactive()) {
ui <- semanticPage(
flow_layout(
numericInput("rows", "How many rows?", 5),
selectInput("letter", "Which letter?", LETTERS),
sliderInput("value", "What value?", 0, 100, 50)
)
)
shinyApp(ui, server = function(input, output) {})
}
# }
Run the code above in your browser using DataLab