Created
October 4, 2017 05:04
-
-
Save aleDsz/5ac85835355a349a9adfcb2e4c8cb074 to your computer and use it in GitHub Desktop.
Simple Shiny Application
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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