Hello,
I'd like to understand why a shiny app server doesn't start when there's a input/output id conflict?
In the following code, the "server started" msg is never printed...(the js console gives me the duplicate binding error).
Sorry if the info is explained elsewhere and thx for any help.
library(shiny)
ui <- function() {
fluidPage(
sidebarPanel(
tableOutput("cars")
),
mainPanel(
tableOutput("cars")
)
)
}
server <- function(input, output, session) {
print("server started")
output$cars <- renderTable(mtcars[1:3, 1:3])
}
shinyApp(ui = ui, server = server)