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

20 lines
495 B
JavaScript

var React = require('react');
var Strategy = React.createClass({
propTypes: {
strategy: React.PropTypes.object.isRequired
},
render: function() {
return (
<div className="line mal">
<div className="unit">
<strong>{this.props.strategy.name}</strong><br />
<em>{this.props.strategy.description}</em>
</div>
</div>
);
}
});
module.exports = Strategy;