mirror of
https://github.com/rstudio/shiny.git
synced 2026-01-29 08:48:13 -05:00
22 lines
375 B
R
22 lines
375 B
R
\name{tableOutput}
|
|
\alias{tableOutput}
|
|
\title{Create a table output element}
|
|
\usage{
|
|
tableOutput(outputId)
|
|
}
|
|
\arguments{
|
|
\item{outputId}{output variable to read the table from}
|
|
}
|
|
\value{
|
|
A table output element that can be included in a panel
|
|
}
|
|
\description{
|
|
Render a \link{reactiveTable} within an application page.
|
|
}
|
|
\examples{
|
|
mainPanel(
|
|
tableOutput("view")
|
|
)
|
|
}
|
|
|