mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
17 lines
340 B
React
17 lines
340 B
React
|
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;
|