| coreOTUModuleUI {PathoStat} | R Documentation |
This function creates the UI for the Core OTU tab. The tab panel can be
included within a tabsetPanel, thus providing a simple way to add or remove
this module from the Shiny app. The first argument, id, is the ID to
be used for the namespace and must match the id argument
provided to coreOTUModule.
coreOTUModuleUI(id, label = "Core OTUs")
id |
Namespace for module |
label |
Tab label |
A tabPanel that can be included within a
tabsetPanel.
coreOTUModule for the server function,
tabPanel for the UI component returned by this
function, or http://shiny.rstudio.com/articles/modules.html for
more information about Shiny modules.
shiny::mainPanel(
shiny::tabsetPanel(
coreOTUModuleUI("coreOTUModule")
)
)