library(shiny)
ui <- function(){
fluidPage(
sidebarLayout(
sidebarPanel = sidebarPanel(
h3("To demonstrate basic shiny deployment with Docker")
),
mainPanel = mainPanel(
shiny::dataTableOutput(outputId = "table")
)
)
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.