learning-react icon indicating copy to clipboard operation
learning-react copied to clipboard

Ch4 - 01-components.html - div id name

Open vidya-hspl opened this issue 4 years ago • 0 comments

Chapter 4 - 03-react-components/01-components.html

The target container or div name - they need to match. Only one change to be made.

  1. Change
    <div id="react-container"></div>

TO

    <div id="root"></div>

OR

document.getElementById("root")

TO

document.getElementById("react-container")

vidya-hspl avatar Aug 18 '21 15:08 vidya-hspl