mirror of
https://github.com/rstudio/shiny.git
synced 2026-02-04 03:35:06 -05:00
11 lines
145 B
R
11 lines
145 B
R
library(shiny)
|
|
library(rmdexamples)
|
|
|
|
shinyServer(function(input, output) {
|
|
|
|
output$gage <- renderHTML({
|
|
justgage("Foo", 5, 1, 10)
|
|
})
|
|
|
|
})
|