scrimba
Reusable React
Compound components
Course Conclusion
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
Course Conclusion
Expand for more info
index.js
run
preview
console
import React from 'react';
import ReactDOM from 'react-dom';

function App() {
return (
<div className="App">
Tee hee, nothing to see here!
</div>
)
}

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