Build a shinyuikit pages

ukPage(..., title = NULL)

Arguments

...

The UI elements to place in the page

title

character. The title of the page

Examples

# NOT RUN {
library(shiny)

shiny::shinyApp(
  ui = ukPage(
   tags$h1("Hello UIkit"),
  ),
  server = function(input, output) {}
)
# }