geposanui/ui.R

17 lines
326 B
R
Raw Normal View History

2021-06-24 22:38:16 +02:00
library(DT)
library(shiny)
ui <- fluidPage(
titlePanel("TPE-OLD candidates"),
sidebarLayout(
position = "right",
sidebarPanel(
h3("Candidate selection"),
DTOutput("genes"),
width = 3
),
mainPanel(
plotOutput("scatter"),
)
)
)