mirror of
https://github.com/rstudio/shiny.git
synced 2026-04-07 03:00:20 -04:00
19 lines
267 B
R
19 lines
267 B
R
library(shiny)
|
|
|
|
shinyUI(
|
|
pageWithSidebar(
|
|
headerPanel(
|
|
h1("Example 1: All Caps")
|
|
),
|
|
|
|
sidebarPanel(
|
|
textInput("val", "Input:", value = "Hello, World!")
|
|
),
|
|
|
|
mainPanel(
|
|
p("You said: ", textOutput("valUpper"))
|
|
)
|
|
)
|
|
)
|
|
|