scrimba
React State Practice
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

React State Practice
AboutCommentsNotes
React State Practice
Expand for more info
App.js
run
preview
console
import React from "react"

// Challenge:
// Given an incomplete class-based component without a constructor,
// add a constructor and initialize state to fix the broken component.

class App extends Component() {
return (
<div>
<h1>{this.state.name}</h1>
<h3>{this.state.age} years old</h3>
</div>
)
}

export default App
Console
Error: SyntaxError: unknown: Unexpected token (9:8) (/App.js:1)
,
index.html
-3:32