Skip to content

Instantly share code, notes, and snippets.

@aleDsz
Created October 4, 2017 05:04
Show Gist options
  • Select an option

  • Save aleDsz/5ac85835355a349a9adfcb2e4c8cb074 to your computer and use it in GitHub Desktop.

Select an option

Save aleDsz/5ac85835355a349a9adfcb2e4c8cb074 to your computer and use it in GitHub Desktop.
Simple Shiny Application
library("shiny")
ui <- bootstrapPage(title = "Simple Shiny Application",
div(class = "container",
div(class = "jumbotron",
tags$h1("Bootstrap Tutorial"),
tags$p("Bootstrap is the most popular HTML, CSS, and JS framework for developing responsive, mobile-first projects on the web.")
)
)
)
server <- shinyServer(function(input, output, session) {
})
shinyApp(ui, server)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment