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

17 lines
340 B
React
Raw Normal View History

var React = require('react');
var StrategyList = React.createClass({
propTypes: {
strategies: React.PropTypes.array.isRequired
},
render: function() {
return (<div>
{JSON.stringify(this.props.strategies)}
</div>
);
}
});
module.exports = StrategyList;