1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-24 15:11:40 +00:00

remove OSSAnnounceModal

This commit is contained in:
Rokt33r
2016-05-02 04:36:59 +09:00
parent 744907ac38
commit 46df9398e8
3 changed files with 1 additions and 40 deletions

View File

@@ -1,29 +0,0 @@
import React, { PropTypes } from 'react'
import ExternalLink from 'browser/components/ExternalLink'
export default class OSSAnnounceModal extends React.Component {
handleCloseBtnClick (e) {
this.props.close()
}
render () {
return (
<div className='OSSAnnounceModal modal'>
<div className='OSSAnnounceModal-title'>Boostnote has been Open-sourced</div>
<ExternalLink className='OSSAnnounceModal-link' href='https://github.com/BoostIO/Boostnote'>
https://github.com/BoostIO/Boostnote
</ExternalLink>
<button
className='OSSAnnounceModal-closeBtn'
onClick={(e) => this.handleCloseBtnClick(e)}
>Close</button>
</div>
)
}
}
OSSAnnounceModal.propTypes = {
close: PropTypes.func
}