import React from 'react' class ShopPriceWrapper extends React.Component { constructor(props) { super(props); } componentDidMount(): void { } render() { let data = this.props.data; if (data.showPrice == 1) { return ( {this.props.children} ); } else { return null; } } } export default ShopPriceWrapper;