mirror of
https://github.com/rstudio/shiny.git
synced 2026-04-29 03:00:45 -04:00
Implement reactive domains
This commit is contained in:
16
inst/rmd-examples/mixed.Rmd
Normal file
16
inst/rmd-examples/mixed.Rmd
Normal file
@@ -0,0 +1,16 @@
|
||||
```{r}
|
||||
library(shiny)
|
||||
tags$strong("foo")
|
||||
selectInput("foo", "foo", LETTERS)
|
||||
```
|
||||
|
||||
Here's an app
|
||||
|
||||
```{r}
|
||||
shinyApp(
|
||||
ui = fluidPage(plotOutput("plot")),
|
||||
server = function(input, output, session) {
|
||||
output$plot <- renderPlot(plot(cars))
|
||||
}
|
||||
)
|
||||
```
|
||||
70
inst/rmd-examples/mixed.html
Normal file
70
inst/rmd-examples/mixed.html
Normal file
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user