add initial scaffolding for ui module

This commit is contained in:
JJ Allaire
2012-07-18 03:25:40 -07:00
parent 3a65b9e0e5
commit 7dc6b4035a
2 changed files with 24 additions and 0 deletions

23
R/ui.R Normal file
View 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) {
}