Create a tab panel item that is enclosed by a tabsetPanel
tabPanel(title, ...)
title | title of the tab |
---|---|
... | content of the tab |
An list containing the title and content of a tab
tabPanel("Summary", "Convallis aesus.")#> $title #> [1] "Summary" #> #> $content #> <div>Convallis aesus.</div> #>tabPanel("Summary", "nextGenShinyAppss.")#> $title #> [1] "Summary" #> #> $content #> <div>nextGenShinyAppss.</div> #>