mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-28 00:06:53 +01:00
28 lines
829 B
JavaScript
28 lines
829 B
JavaScript
var React = require('react');
|
|
|
|
var Strategy = React.createClass({
|
|
propTypes: {
|
|
strategy: React.PropTypes.object.isRequired
|
|
},
|
|
|
|
onRemove: function(event) {
|
|
event.preventDefault();
|
|
if (confirm("Are you sure you want to delete strategy '"+this.props.strategy.name+"'?")) {
|
|
this.props.onRemove(this.props.strategy);
|
|
}
|
|
},
|
|
|
|
render: function() {
|
|
return (
|
|
<div className="line mal">
|
|
<div className="unit">
|
|
<strong>{this.props.strategy.name} </strong>
|
|
<a href="" title="Delete strategy" onClick={this.onRemove}>(remove)</a><br />
|
|
<em>{this.props.strategy.description}</em><br />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
});
|
|
|
|
module.exports = Strategy; |