# NOT RUN {
library(shiny)
# Only run examples in interactive R sessions
if (interactive()) {
ui <- fluidPage(
label3("Welcome"),
dateInput3("date", "date"),
verbatimTextOutput("value")
)
server <- function(input, output) {
output$value <- renderText({ input$date })
}
shinyApp(ui, server)
}
# }
Run the code above in your browser using DataLab