scrimba
Frontend Career Path
Advanced React
Reusability
Aside - React Children
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
Aside - React Children
Expand for more info
index.js
run
preview
console
import React from 'react';
import ReactDOM from 'react-dom/client';
import Marquee from "./Marquee"

function App() {
return (
<main>
<Marquee text="🧛‍♀️ Welcome to Horrorville 🧛‍♀️" />
</main>
)
}

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