Hello, i`m new in this.
I run the following command line in R Studio but I don't see the dashboard
install.packages("shinydashboard")
install.packages("shiny")
library(shinydashboard)
library(shiny)
ui <- dashboardPage(
dashboardHeader(),
dashboardSidebar(),
dashboardBody())
server <- function(input, output) { }
shinyApp(ui, server)
I use R Studio and Windows 10. But it seems that R is trying to open the dashboard since a red circle appears on the console, but it does not open anything
Thanks for your help!
Regards