adrianhajdin / project_e_commerce

This is a code repository for the corresponding video tutorial. In this video, we're going to build a fully functional eCommerce application using commerce.js.
https://jsmastery.pro
1.88k stars 507 forks source link

Blank page on importing products from commerce.js #61

Open yassin246 opened 2 years ago

yassin246 commented 2 years ago

When we were using product mocks, it was working fine, when i started using the commerce.js ones, the website compiled but it was just a blank screen

`import React from 'react'; import { Card, CardMedia, CardContent, CardActions, Typography, IconButton } from '@material-ui/core'; import { AddShoppingCart } from '@material-ui/icons';

import useStyles from './styles';

const Product = ({ product, onAddToCart }) => { const classes = useStyles();

const handleAddToCart = () => onAddToCart(product.id, 1);

return (

{product.name} ${product.price.formatted}
); }; export default Product;`