import PropTypes from 'prop-types' const Quote = ({ quote }) => (

{ quote }

) Quote.propTypes = { quote: PropTypes.string, } export default Quote