Nothing
library(shiny)
library(shiny.fluent)
library(leaflet)
library(DT)
ui <- fluidPage(
fluentInputsUI("fluentInputs"),
shinyInReactUI("shinyInReact"),
scenariosUI("scenarios"),
actionButtonsUI("actionButtons"),
reactInShinyUI("reactInShiny"),
customOutputUI("customOutput"),
deepMixingUI("deepMixing"),
shimmerUI("shimmer"),
themeProviderUI("themeProvider")
)
server <- function(input, output, session) {
fluentInputsServer("fluentInputs")
shinyInReactServer("shinyInReact")
actionButtonsServer("actionButtons")
reactInShinyServer("reactInShiny")
customOutputServer("customOutput")
deepMixingServer("deepMixing")
shimmerServer("shimmer")
}
shinyApp(ui, server)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.