Skip to content

Instantly share code, notes, and snippets.

@StudioEtrange
Last active January 31, 2018 14:39
Show Gist options
  • Save StudioEtrange/de05c638811c506da77123ee8d6b98d9 to your computer and use it in GitHub Desktop.
Save StudioEtrange/de05c638811c506da77123ee8d6b98d9 to your computer and use it in GitHub Desktop.
Minimal RShiny app
## app.R ##
library(shiny)
library(shinydashboard)

ui <- dashboardPage(
  dashboardHeader(),
  dashboardSidebar(),
  dashboardBody(print('Hello World'))
)

server <- function(input, output) { }

shinyApp(ui, server)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment