financial_ui <- tabItem(tabName = "Financial",
tabsetPanel(id="tabSelected",
tabPanel("TTM",
fluidRow(
column(12,
br(),
DT::dataTableOutput('financial_table_ttm')
)
)
),
tabPanel("Annual",
fluidRow(
column(12,
br(),
DT::dataTableOutput('financial_table_annual')
)
)
),
tabPanel("Quarterly",
fluidRow(
column(12,
br(),
DT::dataTableOutput('financial_table_quarterly')
)
)
)
)
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.