mirror of
https://github.com/rstudio/shiny.git
synced 2026-02-07 05:04:58 -05:00
14 lines
301 B
R
14 lines
301 B
R
fluidPage(
|
|
titlePanel('Downloading Data'),
|
|
sidebarLayout(
|
|
sidebarPanel(
|
|
selectInput("dataset", "Choose a dataset:",
|
|
choices = c("rock", "pressure", "cars")),
|
|
downloadButton('downloadData', 'Download')
|
|
),
|
|
mainPanel(
|
|
tableOutput('table')
|
|
)
|
|
)
|
|
)
|