scrimba
What's new in React 19
use()
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

AboutCommentsNotes
use()
Expand for more info
index.jsx
run
preview
console
import ReactDOM from "react-dom/client"

function App() {

return (
<>
<pre style={{ whiteSpace: 'pre-wrap', wordWrap: 'break-word' }}>
<code>
{/* Ready to display the API data here :)*/}
</code>
</pre>
</>
)
}

ReactDOM.createRoot(document.getElementById("root")).render(
<App />
)
Console
/index.html
-9:01