scrimba
Learn React for free
Handling Events in React
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

Handling Events in React
AboutCommentsNotes
Handling Events in React
Expand for more info
App.js
run
preview
console
import React from "react"

function App() {
return (
<div>
<img src="https://www.fillmurray.com/200/100"/>
<br />
<br />
<button>Click me</button>
</div>
)
}

export default App
Console
index.html
-3:42