mirror of
https://github.com/FlipsideCrypto/user_metrics.git
synced 2026-02-06 11:17:49 +00:00
* first start * dynamic button works and posts to server, but gotta clean up * Cleanup * updating keys and last round of cleanup * package bundle * removing unused yarn files
17 lines
318 B
R
17 lines
318 B
R
library(shiny)
|
|
library(dynamicWidget)
|
|
|
|
ui <- fluidPage(
|
|
titlePanel("reactR Input Example"),
|
|
dynamic_buttonInput("textInput"),
|
|
textOutput("textOutput")
|
|
)
|
|
|
|
server <- function(input, output, session) {
|
|
output$textOutput <- renderText({
|
|
sprintf("You entered: %s", input$textInput)
|
|
})
|
|
}
|
|
|
|
shinyApp(ui, server)
|