Skip to content

Instantly share code, notes, and snippets.

@carlganz
Created August 4, 2016 19:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save carlganz/698101eeeee4179e6f253ae47da675de to your computer and use it in GitHub Desktop.
Save carlganz/698101eeeee4179e6f253ae47da675de to your computer and use it in GitHub Desktop.
test <- function() {
ui <- miniPage(
gadgetTitleBar("Test"),
miniContentPanel(
uiOutput("test")
)
)
server <- function(input,output,session) {
output$test <- renderUI({
HTML(as.character(system.file(package="shiny")))
})
}
runGadget(ui,server)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment