Used as child arguments inside glassTabsUI(). Each call defines one tab
button and its associated content pane.
Value
A list of class "glassTabPanel" consumed by glassTabsUI().
Examples
glassTabPanel("overview", "Overview",
shiny::h3("Welcome"),
shiny::p("This is the overview tab.")
)
#> $value
#> [1] "overview"
#>
#> $label
#> [1] "Overview"
#>
#> $content
#> $content[[1]]
#> <h3>Welcome</h3>
#>
#> $content[[2]]
#> <p>This is the overview tab.</p>
#>
#>
#> $selected
#> [1] FALSE
#>
#> attr(,"class")
#> [1] "glassTabPanel"