Make A Stand Alone Web Page That Uses React Babel and JSX
August 2021
You can make a single web page that calls external versions of React and Babel from unpkg.com to render JSX
For example:
Stand Alone React And Babel
const rootElement = document.getElementById('root')
const welcomeElement = Hello, World
ReactDOM.render(welcomeElement, rootElement)
Note that you'll need to set your script type to text/babel in addition to calling the external scripts.
See unpkg.com for details on how to choose versions
You can also get other node modules from there as well
end of line