import React from 'react'; import PropTypes from 'prop-types'; const ContentOverlay = ({ shuffle }) => (
); ContentOverlay.propTypes = { shuffle: PropTypes.func.isRequired }; export default ContentOverlay;