blockQuote {shinydashboardPlus}R Documentation

AdminLTE2 block quote

Description

If you want to quote text

Usage

blockQuote(..., side = "left")

Arguments

...

any element.

side

blockauote orientation. "left" by default, can be set to "right".

Author(s)

David Granjon, dgranjon@ymail.com

Examples

if (interactive()) {
 library(shiny)
 library(shinydashboard)
 shinyApp(
  ui = dashboardPage(
    dashboardHeader(),
    dashboardSidebar(),
    dashboardBody(
     box(
      title = "BlockQuote example",
      blockQuote("I quote some text here!")
     )
    ),
    title = "blockQuote"
  ),
  server = function(input, output) { }
 )
}


[Package shinydashboardPlus version 0.6.0 Index]