inst/shiny-examples/CompareTwoTables/ui.R

library(shiny)

# Define UI for app that draws a histogram ----
ui <- fluidPage(
  
  
  fluidRow(
    column(3, wellPanel(
    )
    ),
    column(3, wellPanel(
    )
    ),
    column(
      width = 6
    )
  ),
  
  fluidRow(
    tabsetPanel(
      type = "tabs",
      # summary tab
      tabPanel(
        "  Select Dates and Location",
        uiOutput("loc"),
        uiOutput("dt"),
        shiny::dataTableOutput("merged")
      )
    )
  )
)
DanielBonnery/BigSyn documentation built on June 28, 2020, 7:18 p.m.