scrimba
Advanced React
Reusability
Render Props Part 2
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

Render Props Part 2
AboutCommentsNotes
Render Props Part 2
Expand for more info
App.js
run
preview
console
import React from "react"
import Decision from "./Decision"

function App() {
return (
<div>
<Decision />
</div>
)
}

export default App
Console
/index.html
-7:51