import React from 'react'; import './Donate.less'; class Donate extends React.PureComponent { renderPayPalButton() { return (
); } render() { return (
{this.renderPayPalButton()}
☕️ Buy coffee to the plugin developer 😀👍
) } } export default Donate;