R/mod_prediction.R

Defines functions mod_prediction_server mod_prediction_ui

#' prediction UI Function
#'
#' @description A shiny Module that creates a prediction field for students to enter their predictions..
#'
#' @param id,input,output,session Internal parameters for {shiny}.
#'
#' @noRd 
#'
#' @importFrom shiny NS tagList 
mod_prediction_ui <- function(id){
  ns <- NS(id)
  tagList(
 
  )
}
    
#' prediction Server Functions
#'
#' @noRd 
mod_prediction_server <- function(id){
  moduleServer( id, function(input, output, session){
    ns <- session$ns
 
  })
}
    
## To be copied in the UI
# mod_prediction_ui("prediction_ui_1")
    
## To be copied in the server
# mod_prediction_server("prediction_ui_1")
mtaylor-semo/rs documentation built on Dec. 21, 2021, 10:12 p.m.