R/show_earning_panel.R

Defines functions show_earning_panel

Documented in show_earning_panel

#' Show earning panel
#' @param title character string with title of panel
#' @param outputId outputId of tabel output
#' @param ... additional arguments applied to shiny::tabPanel
show_earning_panel <- function(title, outputId, ...) {
  
  tabPanel(title = title,
           br(),
           DT::dataTableOutput(outputId = outputId), ...)
  
}
kristian-bak/betting documentation built on Oct. 24, 2022, 1:35 p.m.