## 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) {


})
![MPG Screenshot](screenshots/mpg-empty.png)