import React, {Component, PropTypes} from 'react'; const {clipboard} = require('electron'); class CopyButton extends Component { constructor (props) { super(props); this.state = { showConfirmation: false } } _handleClick (e) { e.preventDefault(); clipboard.writeText(this.props.content); this.setState({showConfirmation: true}); this._triggerTimeout = setTimeout(() => { this.setState({showConfirmation: false}); }, 2000); } componentWillUnmount() { clearTimeout(this._triggerTimeout); } render () { const {content, ...other} = this.props; const {showConfirmation} = this.state; return ( ) } } CopyButton.propTypes = { content: PropTypes.string.isRequired }; export default CopyButton;