'use strict'; const React = require('react'); const Strategy = React.createClass({ propTypes: { strategy: React.PropTypes.object.isRequired }, onRemove(event) { event.preventDefault(); if (window.confirm(`Are you sure you want to delete strategy '${this.props.strategy.name}'?`)) { this.props.onRemove(this.props.strategy); } }, render() { return (
{this.props.strategy.name} (remove)
{this.props.strategy.description}
); } }); module.exports = Strategy;