scrimba
React Full Course
Props in React practice
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

Props in React practice
by
AboutCommentsNotes
Props in React practice
by
Expand for more info
App.js
run
preview
console
import React from "react"

import Joke from "./Joke"

function App() {
return (
<div className="jokes">
<Joke
question = "What is your name?"
punchLine = "My name is John cena"
/>
<Joke
question = "haha! What you do?"
punchLine = "I am American President"
/>
<Joke
question = "lol, Have you dranked?"
punchLine = "I always been dranked"
/>
<Joke
question = "m i joke to you?"
punchLine = "No you are Modi"
/>
<Joke
punchLine = "You're already a kid"
/>

</div>
)
}

export default App
Console
/index.html
LIVE