mirror of
https://github.com/rstudio/shiny.git
synced 2026-04-29 03:00:45 -04:00
explicitliy specify h1 element in headers
This commit is contained in:
@@ -2,8 +2,9 @@ library(shiny)
|
||||
|
||||
shinyUI(
|
||||
applicationPage(
|
||||
|
||||
headerPanel("Example 1: All Caps"),
|
||||
headerPanel(
|
||||
h1("Example 1: All Caps")
|
||||
),
|
||||
|
||||
sidebarPanel(
|
||||
textInput("val", label = "Input:", value = "Hello, World!")
|
||||
|
||||
@@ -3,7 +3,9 @@ library(shiny)
|
||||
shinyUI(
|
||||
applicationPage(
|
||||
|
||||
headerPanel("Example 2: Computing Hashes"),
|
||||
headerPanel(
|
||||
h1("Example 2: Computing Hashes")
|
||||
),
|
||||
|
||||
sidebarPanel(
|
||||
textInput("input1", label="Input:", value="Hello, world!"),
|
||||
|
||||
@@ -5,7 +5,9 @@ library(shiny)
|
||||
shinyUI(
|
||||
applicationPage(
|
||||
|
||||
headerPanel("Example 3: Distributions"),
|
||||
headerPanel(
|
||||
h1("Example 3: Distributions")
|
||||
),
|
||||
|
||||
sidebarPanel(
|
||||
selectListInput("dist", "Distibution type:",
|
||||
|
||||
Reference in New Issue
Block a user