scrimba
Frontend Career Path
React basics
Meme generator
Event Listeners
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
Event Listeners
Expand for more info
App.js
run
preview
console
import React from "react"

export default function App() {

return (
<div className="container">
<img src="https://picsum.photos/640/360" />
<button>Click me</button>
</div>
)
}
Console
/index.html
-6:07