TPD-InternationalFootballRe.../UI/InteractiveMapComponent.R
2019-05-19 19:05:06 +02:00

12 lines
173 B
R

#
# Interactive map component
#
interactiveMapComponent <- function(rowSize)
{
fluidRow(
column(rowSize,
leafletOutput("interactive_world_map")
)
)
}