TPD-InternationalFootballRe.../UI/SidebarPanel.R

13 lines
259 B
R
Raw Normal View History

2019-05-15 00:35:53 +02:00
# Teams sidebar panel
teamsSidebarPanel <- function()
{
sidebarPanel(
selectInput("first_team",
"First team:",
home_teams),
selectInput("second_team",
"Second team:",
away_teams)
)
}