scrimba
Frontend Career Path
React basics
Meme generator
Passing data around
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
Passing data around
Expand for more info
App.js
run
preview
console
import React from "react"
import Header from "./Header"
import Body from "./Body"

export default function App() {
return (
<main>
<Header />
<Body />
</main>
)
}
Console
/index.html
-6:26