scrimba
Learn React - Course Youtube
Parent/Child Components 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

Parent/Child Components Practice
AboutCommentsNotes
Parent/Child Components Practice
Expand for more info
components
MainContent.js
run
preview
console
import React from "react"

function MainContent() {
return (
<main>This is the main</main>
)
}

export default MainContent
Console
index.html
LIVE