scrimba
React Challenges
React Challenges: Intro
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

React Challenges: Intro
AboutCommentsNotes
React Challenges: Intro
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
-5:51