To use React.js from a CDN link, follow the below steps:
<head>
<script src="https://cdn.jsdelivr.net/npm/react@17.0.2/umd/react.development.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/react-dom@17.0.2/umd/react-dom.development.min.js"></script>
</head>
const element = React.createElement("h1", null, "Hello, world!");
ReactDOM.render(element, document.getElementById("root"));
<body>
<div id="root"></div>
<script src="example.js"></script>
</body>
By following the above steps, you can utilize React.js from a different .js file through a CDN link just like regular JavaScript or Vue.js.
Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss
Asked: 2021-10-21 11:00:00 +0000
Seen: 6 times
Last updated: Aug 06 '22
Is it feasible to utilize a Toggle Button to switch among multiple classes exceeding 2?
What is the process for generating a dynamic subdomain/URL using vue.js?
How can I create a transition on click using CSS without the need for JavaScript?
How can the style of the loader be modified while the form submission is being processed?
I'm attempting to develop a Javascript-based comments section for my website.
What are some feasible methods to enable MIDI file playback on a web browser?