import React from 'react'; import PropTypes from 'prop-types'; const Support = (props) => { const { support, handleSupportChange } = props; return (
Support
buymeacoffee handleSupportChange('buyMeACoffee', event)} />
buymeakofi handleSupportChange('buyMeAKofi', event)} />
); }; export default Support; Support.propTypes = { support: PropTypes.object.isRequired, handleSupportChange: PropTypes.func.isRequired, };