| argonDashPage {argonDash} | R Documentation | 
Create a Boostrap 4 dashboard page
Description
Build an argon dashboard page
Usage
argonDashPage(
  title = NULL,
  description = NULL,
  author = NULL,
  navbar = NULL,
  sidebar = NULL,
  header = NULL,
  body = NULL,
  footer = NULL
)
Arguments
| title | App title. | 
| description | Dashboard purpose. | 
| author | Dashboard author. | 
| navbar | Bootstrap 4 dashboard navbar. | 
| sidebar | Bootstrap 4 dashboard main sidebar. | 
| header | Bootstrap 4 dashboard header (below the navbar). Useful to hightlight elements or print a message. | 
| body | Bootstrap 4 dashboard body wrapper. | 
| footer | Bootstrap 4 dashboard footer. | 
Author(s)
David Granjon, dgranjon@ymail.com
Examples
if(interactive()){
 library(shiny)
 library(argonDash)
 shiny::shinyApp(
   ui = argonDashPage(),
   server = function(input, output) {}
 )
}
[Package argonDash version 0.2.0 Index]