This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(shiny) | |
MAX <- 200 | |
shinyServer(function(input, output) { | |
# input$nInputs will be changed infrequently | |
# but input$dummy will be changed frequently | |
nInputs <- reactive(function() { | |
# it would be nice to be able add some code here |