page | R Documentation |
A Brochure Page
page(
href,
ui = tagList(),
server = function(input, output, session) {
},
req_handlers = list(),
res_handlers = list()
)
href |
The endpoint to serve the UI on |
ui |
The UI definition of the app (for example, a call to
If bookmarking is enabled (see |
server |
A function with three parameters: |
req_handlers |
a list of functions that can manipulate the |
res_handlers |
A list of functions that can manipulate the httpResponse
object before it is send to the browser. Each function must take a |
A list
library(shiny)
page(
href = "/page2",
ui = tagList(
h1("This is my second page"),
plotOutput("plotb")
)
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.