library(shiny)
library(emojify)
ui <- fluidPage(
titlePanel("reactR HTMLWidget Example"),
emojifyOutput('widgetOutput')
)
server <- function(input, output, session) {
output$widgetOutput <- renderEmojify(
emojify(set='emojione')
)
}
shinyApp(ui, server)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.