mirror of
https://github.com/rstudio/shiny.git
synced 2026-02-19 02:44:45 -05:00
add initial scaffolding for ui module
This commit is contained in:
23
R/ui.R
Normal file
23
R/ui.R
Normal file
@@ -0,0 +1,23 @@
|
||||
|
||||
|
||||
# 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) {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user