shiny (version 0.3.0)

shinyUI: Create a Shiny UI handler

Description

Register a UI handler by providing a UI definition (created with e.g. pageWithSidebar) and web server path (typically "/", the default value).

Usage

shinyUI(ui, path = "/")

Arguments

ui
A user-interace definition
path
The web server path to server the UI from

Value

  • Called for its side-effect of registering a UI handler

Examples

Run this code
el <- div(HTML("I like <u>turtles</u>"))
cat(as.character(el))

Run the code above in your browser using DataCamp Workspace