import { Box } from '@mui/system'; import PropType from 'prop-types'; import ProductImage from './ProductImage'; import ProductInfo from './ProductInfo'; const FeaturedProduct = ({ bColor, image, side }) => { return ( {side === 'left' ? ( ) : ( )} {side === 'left' ? ( ) : ( )} ); }; FeaturedProduct.propTypes = { bColor: PropType.string, image: PropType.string, side: PropType.string, }; export default FeaturedProduct;