# NOT RUN {
library(shiny)
# Only run examples in interactive R sessions
if (interactive()) {
ui <- fluidPage(
textInput3("id", "id", ""),
textInput3("name","name","")
)
server <- function(input, output) {
}
shinyApp(ui, server)
}
# }
Run the code above in your browser using DataLab