scrimba
Learn React - Side Effects (Section 4)
Fetching data in React
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

Fetching data in React
AboutCommentsNotes
Fetching data in React
Expand for more info
App.jsx
run
preview
console
import React from "react"

export default function App(props) {
const [state, setState] = React.useState(null)

return (
<div>
<pre>{JSON.stringify({ name: "Luke" }, null, 2)}</pre>
</div>
)
}
Console
/index.html
-6:00