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