Skip to content

Commit b3a94f3

Browse files
committed
Add a link back to the GitHub repository
1 parent b14412b commit b3a94f3

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

app.R

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ ui <- fluidPage(
1818
fileInput("file", "Choose CSV File", accept = ".csv"),
1919
tags$hr(),
2020
checkboxInput("header", "Header", TRUE),
21-
checkboxInput("stringAsFactors", "Convert strings to factors", TRUE)
21+
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!")
2223
),
2324

2425
# Show CSV data
@@ -47,4 +48,4 @@ server <- function(input, output) {
4748
}
4849

4950
# Run the application
50-
shinyApp(ui = ui, server = server)
51+
shinyApp(ui = ui, server = server)

0 commit comments

Comments
 (0)