Rev 4297 | Rev 4764 | Ir a la última revisión | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |
/* eslint-disable react/prop-types */import React from 'react'const StatItem = ({ title = '', number = Number, url = '' }) => {return (<a href={url} className='sidebar__stat' onClick={(e) => !url && e.preventDefault()}><p>{title}</p><p className='sidebar__stat-number'>{number}</p></a>)}export default StatItem