import React, { PropTypes } from 'react'; import { connect } from 'react-redux'; import { Button, ButtonGroup } from 'react-bootstrap'; import PureComponent from 'react-pure-render/component'; import { executeChallenge } from '../../redux/actions'; const bindableActions = { executeChallenge }; export class ToolPanel extends PureComponent { static displayName = 'ToolPanel'; static propTypes = { executeChallenge: PropTypes.func }; render() { const { executeChallenge } = this.props; return (