html_dependency_react: Dependencies for React

View source: R/dependencies.R

html_dependency_reactR Documentation

Dependencies for React

Description

Add JavaScript 'React' dependency. For this to work in RStudio Viewer, also include html_dependency_corejs.

Usage

html_dependency_react(offline = TRUE)

Arguments

offline

logical to use local file dependencies. If FALSE, then the dependencies use the Facebook cdn as its src. To use with JSX see babel_transform.

Value

htmlDependency

Examples

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
)

reactR documentation built on Oct. 11, 2023, 9:07 a.m.