Create a tab panel item that is enclosed by a tabsetPanel

tabPanel(title, ...)

Arguments

title

title of the tab

...

content of the tab

Value

An list containing the title and content of a tab

Examples

tabPanel("Summary", "Convallis aesus.")
#> $title #> [1] "Summary" #> #> $content #> <div>Convallis aesus.</div> #>
tabPanel("Summary", "nextGenShinyAppss.")
#> $title #> [1] "Summary" #> #> $content #> <div>nextGenShinyAppss.</div> #>