render()

in src/components/Product/index.js [27:38]


    render() {
        const { className } = this.props;
        return (
            <div className={classnames('Product', className)}>
                <div className="ui vertical stripe segment">
                    <div className="ui container">
                        <ProductDetail product={this.props.product} productCustomers={this.props.productCustomers} getCustomers={ this.getCustomers.bind(this) } />
                    </div>
                </div>
            </div>
        );
    }