R/app_server.R

Defines functions app_server

#' The application server-side
#' 
#' @param input,output,session Internal parameters for {shiny}. 
#'     DO NOT REMOVE.
#' @import shiny
#' @noRd
app_server <- function( input, output, session ) {
  # List the first level callModules here
  word_list <- reactive({
    make_list(piped = input$text)
  })
  
  
  output$table_word_list <- renderDataTable(
    word_list
  )
  
  
}
antdurrant/live.analytics documentation built on Dec. 13, 2021, 12:20 p.m.