We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b14412b commit b3a94f3Copy full SHA for b3a94f3
app.R
@@ -18,7 +18,8 @@ ui <- fluidPage(
18
fileInput("file", "Choose CSV File", accept = ".csv"),
19
tags$hr(),
20
checkboxInput("header", "Header", TRUE),
21
- checkboxInput("stringAsFactors", "Convert strings to factors", TRUE)
+ checkboxInput("stringAsFactors", "Convert strings to factors", TRUE),
22
+ tags$a(href = "https://github.com/coatless-tutorials/convert-shiny-app-r-shinylive", "See source on GitHub!")
23
),
24
25
# Show CSV data
@@ -47,4 +48,4 @@ server <- function(input, output) {
47
48
}
49
50
# Run the application
-shinyApp(ui = ui, server = server)
51
+shinyApp(ui = ui, server = server)
0 commit comments