1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/packages/unleash-frontend/public/js/components/strategy/Strategy.jsx
2020-02-20 08:30:26 +01:00

32 lines
898 B
JavaScript

var React = require('react');
var Strategy = React.createClass({
propTypes: {
strategy: React.PropTypes.object.isRequired
},
onRemove: function(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: 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;