import { connect } from 'react-redux'; import AuctionPriceAndBidCount from '../../components/Auction/AuctionPriceAndBidCount.js'; function mapStateToProps(state, ownProps) { const { bidCount, currentPrice } = getAuctionItemStatus(state, ownProps.id); return { bidCount, currentPrice, }; } export default connect(mapStateToProps, null)(AuctionPriceAndBidCount);