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 (
Crowdfunding

Dear all,


Thanks for your using!

Boostnote is used in about 200 countries and regions, it is a awesome developer community.


To continue supporting this growth, and to satisfy community expectations,

we would like to invest more time in this project.


If you like this project and see its potential, you can help!


Thanks,

Boostnote maintainers.


) } } Crowdfunding.propTypes = { } export default CSSModules(Crowdfunding, styles)