html_dependency_react | R Documentation |
Add JavaScript 'React' dependency. For this to work in RStudio Viewer, also include
html_dependency_corejs
.
html_dependency_react(offline = TRUE)
offline |
|
htmlDependency
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.