R/shiny_app_ui.R

#' Shiny app server object
#'
#' @import shiny
shiny_app_ui <- fluidPage(
  
  titlePanel("noticeboard"),
  
  sidebarLayout(
    
    sidebarPanel(
      
      helpText("Select package and labels to search from the options below"),
      uiOutput("package_choices"),
      uiOutput("label_choices"),
      actionButton("search", "Search")
    ),
    
    mainPanel(
      dataTableOutput("packageTable")
    )
  )
)
thisisnic/noticeboard documentation built on May 6, 2019, 7:20 a.m.