Description Usage Arguments Value Examples
Add JavaScript 'React' dependency.  For this to work in RStudio Viewer, also include
html_dependency_corejs.
| 1 | html_dependency_react(offline = TRUE)
 | 
| offline | 
 | 
htmlDependency
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | library(reactR)
library(htmltools)
tagList(
  tags$script(
  "
    ReactDOM.render(
      React.createElement(
        'h1',
        null,
        'Powered by React'
      ),
      document.body
    )
  "
  ),
   #add core-js first to work in RStudio Viewer
  html_dependency_corejs(),
  html_dependency_react() #offline=FALSE for CDN
)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.