TPD-InternationalFootballRe.../UI/main.R
2019-05-15 00:35:53 +02:00

24 lines
367 B
R

#
# Main UI File
#
# Import files
source("UI/SidebarPanel.R")
# UI
ui <- fluidPage(
# Application title
titlePanel("International football results 1872-2018"),
# Sidebar layout elements
sidebarLayout(
teamsSidebarPanel(),
# Main panel
mainPanel(
plotOutput("balance"),
DT::dataTableOutput("results_pagination")
)
)
)