This function creates a Shiny UI module for uploading data files. It provides a file input interface that can be integrated into a larger Shiny application.
Value
A `tagList` containing a `uiOutput` for file upload. The specific elements of this output (such as file input and upload button) are defined in the corresponding server function.
Examples
if (FALSE) { # \dontrun{
# In a Shiny app:
ui <- fluidPage(
shiny_dataUploadUI("dataUpload")
)
server <- function(input, output, session) {
data <- shiny_dataUploadServer("dataUpload")
}
} # }