scrimba
Class Components
Intro to class 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

Intro to class components
AboutCommentsNotes
Intro to class components
Expand for more info
App.js
run
preview
console
import React from "react"

export default function App() {
return (
<h1>Function component</h1>
)
}
Console
/index.html
-3:55