const PropTypes = require('prop-types'); const React = require('react'); const FlexRow = require('../../components/flex-row/flex-row.jsx'); const classNames = require('classnames'); const CappedNumber = require('../../components/cappednumber/cappednumber.jsx'); const projectShape = require('./projectshape.jsx').projectShape; require('./stats.scss'); const Stats = props => (
{Math.max(0, props.loveCount)}
{Math.max(0, props.favoriteCount)}
{props.projectInfo.stats.remixes}
); Stats.propTypes = { faved: PropTypes.bool, favoriteCount: PropTypes.number, loveCount: PropTypes.number, loved: PropTypes.bool, onFavoriteClicked: PropTypes.func, onLoveClicked: PropTypes.func, projectInfo: projectShape }; module.exports = Stats;