Explorer
project
components
Header.jsx
Main.jsx
images
troll-face.png
App.jsx
index.css
index.html
index.jsx
Dependencies
react-dom@19.0.0-rc-b57d2823-20240822
react@19.0.0-rc-b57d2823-20240822
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
import { useState, useEffect } from "react"
export default function Main() {
const [meme, setMeme] = useState({
topText: "One does not simply",
bottomText: "Walk into Mordor",
imageUrl: "http://i.imgflip.com/1bij.jpg"
})
const [allMemes, setAllMemes] = useState([])
useEffect(() => {
fetch("https://api.imgflip.com/get_memes")
.then(res => res.json())
.then(data => setAllMemes(data.data.memes))
}, [])
function getMemeImage() {
const randomNumber = Math.floor(Math.random() * allMemes.length)
const newMemeUrl = allMemes[randomNumber].url
setMeme(prevMeme => ({
...prevMeme,
imageUrl: newMemeUrl
}))
}
function handleChange(event) {
const {value, name} = event.currentTarget
setMeme(prevMeme => ({
...prevMeme,
[name]: value
}))
}
return (
<main>
<div className="form">
<label>Top Text
<input
type="text"
placeholder="One does not simply"
name="topText"
onChange={handleChange}
value={meme.topText}
/>
</label>
<label>Bottom Text
<input
type="text"
placeholder="Walk into Mordor"
name="bottomText"
onChange={handleChange}
value={meme.bottomText}
/>
</label>
<button onClick={getMemeImage}>Get a new meme image 🖼</button>
</div>
<div className="meme">
<img src={meme.imageUrl} />
<span className="top">{meme.topText}</span>
<span className="bottom">{meme.bottomText}</span>
</div>
</main>
)
}