Create an app with the following:
Drop files here
or click to upload
library(shiny)
ui <- fluidPage(
h1("Basic Shiny App")
)
server <- function(input, output) {
}
shinyApp(ui = ui, server = server)
Hi! I can help you with any questions about Shiny and R. What would you like to know?