scrimba
Learn React - Side Effects (Section 4)
Meme Generator Starting Point
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 Starting Point
AboutCommentsNotes
Meme Generator Starting Point
Expand for more info
components
Main.jsx
run
preview
console
export default function Main() {
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:26