Skip to content

Instantly share code, notes, and snippets.

@BrianJenney
Created November 21, 2021 22:35
Show Gist options
  • Save BrianJenney/1602ba98c65babe971c7877b3930df4c to your computer and use it in GitHub Desktop.
Save BrianJenney/1602ba98c65babe971c7877b3930df4c to your computer and use it in GitHub Desktop.
const Cart = ({items, isLoggedIn, btnCallBack}) => {
if(!isLoggedIn){
return <LoginPrompt/>
}
return(
<div>
<div>
{items.map(({price, name}) => {
return(
<ItemDisplay price={price} name={name}/>
)
})
<button onClick={() => btnCallback()}>Clear Cart</button>
</div>
</div>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment