Implement reactive domains

This commit is contained in:
Joe Cheng
2014-04-07 17:44:26 -07:00
committed by Joe Cheng
parent 29c0f9a43a
commit e5e54fe4c1
17 changed files with 446 additions and 54 deletions

View 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))
}
)
```

File diff suppressed because one or more lines are too long