mirror of
				https://github.com/Unleash/unleash.git
				synced 2025-10-27 11:02:16 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			298 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			298 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import { connect } from 'react-redux';
 | |
| import StrategiesList from './strategies-list-component';
 | |
| 
 | |
| const mapStateToProps = state => ({
 | |
|     strategies: state.strategies.get('list').toArray(),
 | |
|     context: state.context.toJS(),
 | |
| });
 | |
| 
 | |
| export default connect(mapStateToProps, undefined)(StrategiesList);
 |