scrimba
Learn React for free
React Lifecycle Methods Part 1
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 Lifecycle Methods Part 1
AboutCommentsNotes
React Lifecycle Methods Part 1
Expand for more info
App.js
run
preview
console
import React, {Component} from "react"

class App extends Component {
constructor() {
super()
this.state = {}
}

render() {
return (
<div>
Code goes here
</div>
)
}
}

export default App
Console
index.html
-9:25