This is a simple Shiny application to demonstrate the [runAppWithParams()] function. This will display the structure and contents of any data frames listed in the `data_frames` list object.
Examples
if (interactive()) { # Only run this example in interactive R sessions
data(mtcars)
data(faithful)
runAppWithParams(ui = ShinyDemo::df_viewer_ui,
server = ShinyDemo::df_viewer_server,
data_frames = list(mtcars = mtcars, faithful = faithful),
port = 2112)
}