scrimba
Frontend Career Path
Advanced React
Reusability
Solo Project - Component Library++
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

Solo Project - Component Library++
AboutCommentsNotes
Solo Project - Component Library++
Expand for more info
index.jsx
run
preview
console
import React from 'react';
import ReactDOM from 'react-dom/client';
import Menu from "./components/Menu/index"
import Star from "./components/Star"

function App() {
return (
<h1>Your components go here</h1>
)
}

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