scrimba
Advanced React
Reusability
Intro to Refs
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Intro to Refs
AboutCommentsNotes
Intro to Refs
Expand for more info
index.js
run
preview
console
import React from 'react'
import ReactDOM from 'react-dom/client'

function Main() {
return <h3>Understanding refs</h3>
}

ReactDOM.createRoot(document.getElementById("root")).render(<Main />);
Console
/index.html
-6:34