RinteRface / shinydashboardPlus

extensions for shinydashboard
https://shinydashboardplus.rinterface.com
Other
454 stars 77 forks source link

boxPlus in wellPanel #43

Closed tsolloway closed 5 years ago

tsolloway commented 5 years ago

Am I doing something wrong here? Or boxPlus can't go in wellPanels?

shinyApp(
  ui = dashboardPagePlus(
    dashboardHeaderPlus(),
    dashboardSidebar(),
    dashboardBody(
      wellPanel(
        boxPlus(
          title = "Box", 
          p("cool stuff")
        )
      )
    )
  ),
  server = function(input, output) {

  }
)