mirror of
				https://github.com/Unleash/unleash.git
				synced 2025-10-27 11:02:16 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			503 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			503 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
var React   = require('react');
 | 
						|
var Feature = require('./Feature');
 | 
						|
 | 
						|
var FeatureList = React.createClass({
 | 
						|
    render: function() {
 | 
						|
        var featureNodes = this.props.features.map(function(feature) {
 | 
						|
            return (
 | 
						|
                <Feature
 | 
						|
                  key={feature.name}
 | 
						|
                  feature={feature}
 | 
						|
                  onChange={this.props.onFeatureChanged} />
 | 
						|
            );
 | 
						|
        }.bind(this));
 | 
						|
 | 
						|
        return <div>{featureNodes}</div>;
 | 
						|
    }
 | 
						|
});
 | 
						|
 | 
						|
module.exports = FeatureList; |