## app.R ##
library(shiny)
library(shinydashboard)
ui <- dashboardPage(
dashboardHeader(),
dashboardSidebar(),
dashboardBody(print('Hello World'))
)
server <- function(input, output) { }
shinyApp(ui, server)
Last active
January 31, 2018 14:39
-
-
Save StudioEtrange/de05c638811c506da77123ee8d6b98d9 to your computer and use it in GitHub Desktop.
Minimal RShiny app
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment