0byt3m1n1
Path:
C:
/
Program Files
/
R
/
R-4.2.2
/
library
/
reactR
/
templates
/
[
Home
]
File: input_app.R.txt
library(shiny) library(${package}) ui <- fluidPage( titlePanel("reactR Input Example"), ${name}Input("textInput"), textOutput("textOutput") ) server <- function(input, output, session) { output$textOutput <- renderText({ sprintf("You entered: %s", input$textInput) }) } shinyApp(ui, server)