mirror of
https://github.com/Unleash/unleash.git
synced 2025-04-24 01:18:01 +02: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);
|