import { Breadcrumbs, Button, Checkbox, Divider, FormControlLabel, Grid, Typography, } from '@mui/material'; import { Box } from '@mui/system'; import { useCheckoutData } from '../../store/checkout-context'; import DataCard from '../cards/data-card/DataCard'; const ShippingContent = () => { const { checkoutStorage } = useCheckoutData(); return ( Shipping Cart Checkout Shipping The following fields will be used as the shipping details for your order Contact {checkoutStorage?.userInfo.email} Shipping to {checkoutStorage?.userInfo.address} |{' '} {checkoutStorage?.userInfo.city}{' '} {checkoutStorage?.userInfo.postcode} } label="Free Shipping" sx={{ color: 'black', ml: 2 }} /> {checkoutStorage?.products.map((entry, i) => { return ( ); })} ); }; export default ShippingContent;