scrimba
Learn React for free
Class-based Components
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

Class-based Components
AboutCommentsNotes
Class-based Components
Expand for more info
App.js
run
preview
console
import React from "react"

function App() {
return (
<div>
<h1>Code goes here</h1>
</div>
)
}

export default App
Console
index.html
-5:10