scrimba
Meme Generator State
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

Meme Generator State
AboutCommentsNotes
Meme Generator State
Expand for more info
components
Main.jsx
run
preview
console
export default function Main() {
/**
* Challenge: move the hardcoded meme info into React
* state. Use an object with `topText`, `bottomText`,
* and `image` properties, and set the initial values to
* the ones hardcoded below.
*/

return (
<main>
<div className="form">
<label>Top Text
<input
type="text"
placeholder="One does not simply"
name="topText"
/>
</label>

<label>Bottom Text
<input
type="text"
placeholder="Walk into Mordor"
name="bottomText"
/>
</label>
<button>Get a new meme image 🖼</button>
</div>
<div className="meme">
<img src="http://i.imgflip.com/1bij.jpg" />
<span className="top">One does not simply</span>
<span className="bottom">Walk into Mordor</span>
</div>
</main>
)
}
Console
/index.html
-2:43