mirror of
https://github.com/rstudio/shiny.git
synced 2026-01-28 16:28:15 -05:00
479 B
479 B
UI & Server
ui.R
library(shiny)
# Define UI for miles per gallon application
shinyUI(pageWithSidebar(
# Application title
headerPanel("Miles Per Gallon"),
sidebarPanel(),
mainPanel()
))
server.R
library(shiny)
# Define server logic required to plot various variables against mpg
shinyServer(function(input, output) {
})
