shinyUI(fluidPage(
titlePanel("FutureManager example"),
sidebarLayout(
sidebarPanel(
width = 2,
uiOutput("sidebar")
),
mainPanel(
tabsetPanel(
id = "tabset",
tabPanel(
title = "plot",
plotOutput("plot")
),
tabPanel(
title = "table",
tableOutput("table")
)
)
)
)
))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.