scrimba
Frontend Career Path
Advanced React
Reusability
Aside: Compound Components Intro
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

Aside: Compound Components Intro
AboutCommentsNotes
Aside: Compound Components Intro
Expand for more info
index.js
run
preview
console
import React from 'react';
import ReactDOM from 'react-dom/client';
import Menu from "./Menu/Menu"

function App() {
return (
<>
<Menu
buttonText="Sports"
items={["Tennis", "Racquetball", "Pickleball", "Squash"]}
/>
</>
)
}

ReactDOM.createRoot(document.getElementById('root')).render(<App />);
Console
/index.html
-4:52