import React from 'react' import ShopTimer from '../../../../common/product/timer/liveGoods' import MUtil from "../../../../util/utils"; const marketType = MUtil.marketType(); class DistriTimer extends React.Component { constructor(props) { super(props); this.state = {} } componentDidMount(): void { } render() { let data: any = {}; let newData = Object.assign(data, this.props) return ( ); } } export default DistriTimer;