import React, { Component } from 'react'; import Img from '../../ImgLoad/index'; import './style.styl'; class GoodsInfo extends Component { constructor(props: any) { super(props); } render() { const { goods } = this.props; return (
{goods.productName}
{goods.productDesc}
{goods.salePrice}
{/*
{goods.price}.00
*/}
); } } export default GoodsInfo;