mirror of
https://github.com/rstudio/shiny.git
synced 2026-02-06 20:55:24 -05:00
18 lines
264 B
R
18 lines
264 B
R
library(shiny)
|
|
|
|
shinyUI(
|
|
application(
|
|
|
|
headerPanel("Example 1: All Caps"),
|
|
|
|
sidebarPanel(
|
|
textInput("val", label = "Input:", value = "Hello, World!")
|
|
),
|
|
|
|
mainPanel(
|
|
textOutput("valUpper", label = "You said:")
|
|
)
|
|
)
|
|
)
|
|
|