scrimba
Frontend Career Path
Advanced React
Reusability
Render Props Part 3
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
Render Props Part 3
Expand for more info
App.js
run
preview
console
import React from "react"
import Decision from "./Decision"

function App() {
return (
<div>
<Decision sayName={(goingOut) => {
console.log(goingOut ? "I AM going out" : "I'm staying in")
}} />
</div>
)
}

export default App
Console
"I'm staying in"
,
"I AM going out"
,
/index.html
-5:36