import React from 'react' import PropTypes from 'prop-types' import Button from '@material-ui/core/Button' export default class Donate extends React.Component { openGithub (path) { window.shell.openExternal(path) } render () { const {classes} = this.props return (


❤️ 欢迎成为我们的赞助者




B3log 开源组织 旗下包含  BNDSymphonySoloPipeWideLatkeVditorGulu 等一系列开源项目。随着项目规模的增长,我们需要有相应的资金支持才能持续项目的维护和开发。

如果你觉得 BND2 还算好用,可通过支付宝对我们进行赞助支持,非常感谢!



{/*微信捐赠*/} {/*支付宝捐赠*/}
) } } Donate.propTypes = { classes: PropTypes.object.isRequired, }