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