header <- dashboardHeader(title = "France inequalities")
sidebar <- dashboardSidebar(
sidebarMenu(
id = "tabs",
menuItem("Map", icon = icon("map"), tabName = "map")
)
)
body <- dashboardBody(
tabItems(
tabItem(
tabName = "map",
mod_map_ui("mod_map")
)
)
)
dashboardPage(header, sidebar, body)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.