scrimba
Learn React - Side Effects (Section 4)
useEffect practice!
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

useEffect practice!
AboutCommentsNotes
useEffect practice!
Expand for more info
App.jsx
run
preview
console
import React from "react"

export default function App() {
const [starWarsData, setStarWarsData] = React.useState({})
const [count, setCount] = React.useState(0)

/**
* Challenge part 1:
* Fetch the data from this url: "https://swapi.dev/api/people/1"
* and save it in the starWarsData state. Make sure you don't
* get stuck in an infinite rendering loop!
*/

return (
<div>
<h2>The count is {count}</h2>
<button onClick={() => setCount(prevCount => prevCount + 1)}>Add</button>
<pre>{JSON.stringify(starWarsData, null, 2)}</pre>
</div>
)
}
Console
/index.html
-4:41