scrimba
Frontend Career Path
React basics
Meme generator
Making API calls
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
Making API calls
Expand for more info
App.js
run
preview
console
import React from "react"

export default function App() {
const [data, setData] = React.useState({})

return (
<div>
<pre>{JSON.stringify(data, null, 2)}</pre>
</div>
)
}
Console
/index.html
-4:00