import React from 'react'; import PropTypes from 'prop-types'; class Logo extends React.Component { constructor(props) { super(props); } render() { return (
{this.props.alt}
); } } export default Logo; Logo.propTypes = { src: PropTypes.string, alt: PropTypes.string }; Logo.defaultProps = { src: require('../images/white-logo.png'), alt: '' };