mirror of
https://github.com/rstudio/shiny.git
synced 2026-02-02 02:34:57 -05:00
11 lines
279 B
R
11 lines
279 B
R
shinyUI(pageWithSidebar(
|
|
headerPanel('Downloading Data'),
|
|
sidebarPanel(
|
|
selectInput("dataset", "Choose a dataset:",
|
|
choices = c("rock", "pressure", "cars")),
|
|
downloadButton('downloadData', 'Download')
|
|
),
|
|
mainPanel(
|
|
tableOutput('table')
|
|
)
|
|
)) |