import React, { Component } from 'react'; import './style.styl'; import Img from '../../ImgLoad/index'; class GoodsContent extends Component { render() { const { goods = {}, title } = this.props; const images = goods.productContentImages || []; return (
{title ? (
{title}
) : null}
{images.map((item: any, index: number) => ( ))}
); } } export default GoodsContent;