tab_items: Create a panel with tabs.

Description Usage Arguments Value Functions Examples

View source: R/tab.R

Description

Create a panel with tabs.

Usage

1
2
3

Arguments

...

Tabs.

Value

A panel with tabs that can be passed to dashboardBody

Functions

Examples

1
2
3
tabItems(
 tabItem(tabName = "tab1", "Tab 1"),
 tabItem(tabName = "tab2", "Tab 2"))

Example output

Attaching package:semantic.dashboardThe following object is masked frompackage:graphics:

    box

<div class="tab-content">
  <div role="tabpanel" style="height: 100%;" class="ui tab tab-pane container active" id="shiny-tab-tab1" data-tab="shiny-tab-tab1">
    <div class="ui padded grid">Tab 1</div>
  </div>
  <div role="tabpanel" style="height: 100%;" class="ui tab tab-pane container" id="shiny-tab-tab2" data-tab="shiny-tab-tab2">
    <div class="ui padded grid">Tab 2</div>
  </div>
</div>

semantic.dashboard documentation built on Nov. 10, 2021, 1:06 a.m.