If I have a module that needs to return a list of reactive expressions from the module server function, is this the correct syntax?
return(list(exp_1, exp_2, exp_3))
And a follow up question is how do you use such a list of multiple reactive expressions in the server function of the Shiny app? Garrett Grolemund explains in
this video tutorial that you should save the callModule() data in a variable, and then "crack" open that variable with ()' when you are going to use it. But what do you do if you have a list of several reactive expressions that contain return values for different purposes in the main app?
Thanks in advance.