scrimba
useContext()
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

useContext()
AboutCommentsNotes
useContext()
Expand for more info
App.js
run
preview
console
import React from "react"

import Header from "./Header"
import Button from "./Button"

function App() {
return (
<div>
<Header />
<Button />
</div>
)
}

export default App
Console
/index.html
-6:38