R/app_ui.R

Defines functions app_ui

#' @import shiny
app_ui <- function() {
  fluidPage(
    titlePanel("My Awesome Shiny App"),
    # Sidebar with a slider input for number of bins
    sidebarLayout(
      sidebarPanel(
        sliderInput("bins",
                    "Number of bins:",
                    min = 1,
                    max = 50,
                    value = 30),
        mod_csv_fileInput("fichier")
      ),

      # Show a plot of the generated distribution
      mainPanel(
        plotOutput("distPlot"),
        DT::DTOutput("tableau")
      )
    )
  )
}
marionlouveaux/cellviz3d documentation built on May 20, 2019, 9:55 a.m.