import * as React from 'react' class ShopProductName extends React.Component { constructor(props) { super(props); } componentDidMount(): void { } render() { let data = this.props.data; return ( {this.props.children} ); } } export default ShopProductName;