# NOT RUN {
spsDepend("basic")
# shinydashboard has both js and css and if we only want to use css:
spsDepend("shinydashboard", css = FALSE)
# Then add it to your shiny app
if(interactive()){
library(shiny)
ui <- fluidPage(
tags$i(class = "fa fa-home"),
spsDepend("font-awesome")
)
server <- function(input, output, session) {
}
shinyApp(ui, server)
}
# }
Run the code above in your browser using DataLab