learning-react
learning-react copied to clipboard
Ch4 - 01-components.html - div id name
Chapter 4 - 03-react-components/01-components.html
The target container or div name - they need to match. Only one change to be made.
- Change
<div id="react-container"></div>
TO
<div id="root"></div>
OR
document.getElementById("root")
TO
document.getElementById("react-container")