R/tab_results.R

Defines functions results_tab_div

Documented in results_tab_div

#' Shows the user interface for the results page. 
#' 
#' @export
results_tab_div <- function(){
  fluidRow(
  column(width = 8,offset = 2, br(),
         tabsetPanel(type = "pills",
                     tabPanel("Summary",br(),
                              uiOutput("results_summary"), 
                              plotOutput("plot"), br(),
                              uiOutput("plot_caption")
                     ),
                     tabPanel("Data", 
                              DT::DTOutput("results_table"),
                     )
         )
      )
    )
}
rbcavanaugh/pnt documentation built on Oct. 20, 2024, 7:21 p.m.