I'm trying to create a dashboard using shiny R and I'm ending up with this error:
ERROR: unused argument (menuItem("Amazon-web-service"))
code:
shinyUI(
dashboardPage(
dashboardHeader(title="My First Dashboard"),
dashboardSidebar(),
dashboardBody(),
menuItem("Devops"),
menuItem("Blockchain"),
menuItem("Amazon-web-service")
)
)