mirror of
https://github.com/BoostIo/Boostnote
synced 2025-12-13 17:56:25 +00:00
50 lines
1.3 KiB
JavaScript
50 lines
1.3 KiB
JavaScript
import React from 'react'
|
|
import CSSModules from 'browser/lib/CSSModules'
|
|
import styles from './Crowdfunding.styl'
|
|
|
|
const electron = require('electron')
|
|
const { shell } = electron
|
|
|
|
class Crowdfunding extends React.Component {
|
|
constructor (props) {
|
|
super(props)
|
|
|
|
this.state = {
|
|
}
|
|
}
|
|
|
|
handleLinkClick (e) {
|
|
shell.openExternal(e.currentTarget.href)
|
|
e.preventDefault()
|
|
}
|
|
|
|
render () {
|
|
return (
|
|
<div styleName='root'>
|
|
<div styleName='header'>Crowdfunding</div>
|
|
<p>Dear all,</p>
|
|
<br />
|
|
<p>Thanks for your using!</p>
|
|
<p>Boostnote is used in about 200 countries and regions, it is a awesome developer community.</p>
|
|
<br />
|
|
<p>To continue supporting this growth, and to satisfy community expectations,</p>
|
|
<p>we would like to invest more time in this project.</p>
|
|
<br />
|
|
<p>If you like this project and see its potential, you can help!</p>
|
|
<br />
|
|
<p>Thanks,</p>
|
|
<p>Boostnote maintainers.</p>
|
|
<br />
|
|
<button styleName='cf-link'>
|
|
<a href='https://opencollective.com/boostnoteio' onClick={(e) => this.handleLinkClick(e)}>Support via OpenCollective</a>
|
|
</button>
|
|
</div>
|
|
)
|
|
}
|
|
}
|
|
|
|
Crowdfunding.propTypes = {
|
|
}
|
|
|
|
export default CSSModules(Crowdfunding, styles)
|