app.R

library(shiny)
library(reacthexgrid)

ui <- fluidPage(
  titlePanel("reactR HTMLWidget Example"),
  reacthexgridOutput('widgetOutput')
)

server <- function(input, output, session) {
  output$widgetOutput <- renderReacthexgrid(
    reacthexgrid("Hello world!")
  )
}

shinyApp(ui, server)
maxheld83/reacthexgrid documentation built on Jan. 4, 2020, 10:46 a.m.