mirror of
https://github.com/rstudio/shiny.git
synced 2026-01-31 09:48:38 -05:00
6 lines
153 B
R
6 lines
153 B
R
shinyServer(function(input, output) {
|
|
output$currentTime <- renderText({
|
|
invalidateLater(1000)
|
|
paste("The current time is", Sys.time())
|
|
})
|
|
}) |