library(shiny)
library(bslib)
library(OSUICode)
ui <- fluidPage(
theme = bslib_neon_theme,
tabsetPanel(
tabPanel(
"First tab",
"The contents of the first tab",
actionButton("test", "Test")
),
tabPanel(
"Second tab",
"The contents of the second tab"
)
)
)
server <- function(input, output, session) {}
run_with_themer(shinyApp(ui, server))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.