mirror of
https://github.com/rstudio/shiny.git
synced 2026-02-02 02:34:57 -05:00
7 lines
172 B
R
7 lines
172 B
R
shinyServer(function(input, output, session) {
|
|
output$currentTime <- renderText({
|
|
invalidateLater(1000, session)
|
|
paste("The current time is", Sys.time())
|
|
})
|
|
})
|