doc: add user to useStateValue and conditional rendering

This commit is contained in:
Leon Xu
2022-05-07 13:26:45 -07:00
parent 2e512535a0
commit e974e40104
+2 -1
View File
@@ -8,7 +8,7 @@ import CheckoutProduct from "./CheckoutProduct";
import "./Checkout.css";
function Checkout() {
const [{ basket }, dispatch] = useStateValue();
const [{ basket, user }, dispatch] = useStateValue();
return (
<section className="checkout">
<article className="checkout__left">
@@ -19,6 +19,7 @@ function Checkout() {
/>
<article>
{!user ? "" : <h3>Hello, {!user?.email}</h3>}
<h2 className="checkout__title">Your Shopping Basket</h2>
{basket.map((item) => (
<CheckoutProduct