scrimba
Learn React
Meme generator
useState
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
useState
Expand for more info
App.js
run
preview
console
import React from "react"

export default function App() {
return (
<div className="state">
<h1 className="state--title">Is state important to know?</h1>
<div className="state--value">
<h1>Yes</h1>
</div>
</div>
)
}
Console
/index.html
-3:52