Skip to contents

Render children with React.

Usage

ReactContext(...)

Arguments

...

Children to render.

Examples

if (interactive()) shinyApp(
  ui = shiny.react:::ReactContext(
    "This text is rendered by React"
  ),
  server = function(input, output) {}
)