Create a Bootstrap 386 Jumbotron
Examples
if (interactive()) {
library(shiny)
library(shiny386)
ui <- page_386(
jumbotron_386(
title = "Jumbotron 386",
p("Hello World"),
button_386("btn", "More", class = "btn-lg btn-block")
)
)
server <- function(input, output, session) {}
shinyApp(ui, server)
}