mirror of
https://github.com/Unleash/unleash.git
synced 2025-09-28 17:55:15 +02:00
9 lines
300 B
JavaScript
9 lines
300 B
JavaScript
import { connect } from 'react-redux';
|
|
import StrategiesSection from './strategies-section';
|
|
import { fetchStrategies } from '../../../store/strategy-actions';
|
|
|
|
|
|
export default connect((state) => ({
|
|
strategies: state.strategies.get('list').toArray(),
|
|
}), { fetchStrategies })(StrategiesSection);
|