You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
222B

  1. library(shiny)
  2. ui <- fluidPage(
  3. textAreaInput("typing", "Type here..."),
  4. verbatimTextOutput("debug")
  5. )
  6. server <- function(input, output, session) {
  7. output$debug <- renderPrint(input$typing)
  8. }
  9. shinyApp(ui, server)