scrimba
What's new in React 19
React Compiler
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
React Compiler
Expand for more info
index.jsx
run
preview
console
import React from 'react';
import ReactDOM from 'react-dom/client';

function App() {
return (
<h1>Hello World</h1>
)
}

ReactDOM.createRoot(document.getElementById('root')).render(<App />);
Console
/index.html
-1:43