scrimba
React Bootcamp Course
Setting the stage with modern JavaScript features
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

Setting the stage with modern JavaScript features
AboutCommentsNotes
Setting the stage with modern JavaScript features
Expand for more info
App.js
run
preview
console
import React from "react"
import NewJSFeatures from "./NewES6ClassFeatures"

function App() {
return (
<div>
<NewJSFeatures />
</div>
)
}

export default App
Console
/index.html
-6:59