Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Blank page on importing products from commerce.js #61

Open
yassin246 opened this issue Aug 10, 2022 · 0 comments
Open

Blank page on importing products from commerce.js #61

yassin246 opened this issue Aug 10, 2022 · 0 comments

Comments

@yassin246
Copy link

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}


<Typography dangerouslySetInnerHTML={{ __html: product.description }} variant="body2" color="textSecondary" component="p" />







);
};

export default Product;`

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant