library(shiny)
library(dataui)
ui <- fluidPage(
titlePanel("reactR HTMLWidget Example"),
datauiOutput('widgetOutput')
)
server <- function(input, output, session) {
output$widgetOutput <- renderDataui(
dataui("Hello world!")
)
}
shinyApp(ui, server)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.