inst/exercises/exercise-20.R

library(shiny)

ui <- fluidPage(

  # *Input() functions
  # *Output() functions
  # layout functions
  
)

server <- function(input, output) {
  
  # render*() functions (save results to ouput$)
  # observeEvent(), reactive(), eventReactive() functions
  
}

shinyApp(server = server, ui = ui)
rstudio/reportsWS documentation built on May 28, 2019, 5:42 a.m.