0byt3m1n1
Path:
C:
/
Program Files
/
R
/
R-4.2.2
/
library
/
reactR
/
templates
/
[
Home
]
File: widget_app.R.txt
library(shiny) library(${name}) ui <- fluidPage( titlePanel("reactR HTMLWidget Example"), ${name}Output('widgetOutput') ) server <- function(input, output, session) { output$widgetOutput <- render${capName}( ${name}("Hello world!") ) } shinyApp(ui, server)