mirror of
https://github.com/rstudio/shiny.git
synced 2026-02-02 02:34:57 -05:00
23 lines
353 B
R
23 lines
353 B
R
|
|
|
|
# attribs, text, children
|
|
|
|
# explicit named args (my attributes)
|
|
# special named args (class, style, attribs)
|
|
# un-named character string (content)
|
|
# children (which you must explicitly render)
|
|
# you return a function
|
|
|
|
processArgs <- function(args) {
|
|
|
|
}
|
|
|
|
p <- function(...) {
|
|
|
|
}
|
|
|
|
|
|
|
|
defineUI <- function(header, inputs, outputs, stylesheet) {
|
|
|
|
} |