import React from 'react' class LinkWrapper extends React.Component { constructor(props) { super(props); } componentDidMount(): void { } goDetail(href) { if (this.props.env == 'isMp') { this.props.goMpPath(href); }else{ window.location.href = href; } } render() { return (
{this.props.children}
); } } export default LinkWrapper;