Files
shiny/inst/rmd-examples/mixed.Rmd

17 lines
258 B
Plaintext

```{r}
library(shiny)
tags$strong("foo")
selectInput("foo", "foo", LETTERS)
```
Here's an app
```{r}
shinyApp(
ui = fluidPage("Hello", plotOutput("plot")),
server = function(input, output, session) {
output$plot <- renderPlot(plot(cars))
}
)
```