Rev 4265 | Rev 4375 | 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 EmptySection = ({Icon = null,message = 'No hay publicaciones'}) => {return (<div className='empty__section'>{Icon && <Icon />}<p>{message}</p></div>)}export default EmptySection