mirror of
https://github.com/Unleash/unleash.git
synced 2025-07-02 01:17:58 +02:00
* changed do @babel/preset-env * runned lint fix * added beforeEach in ui-config-store-test
13 lines
406 B
JavaScript
13 lines
406 B
JavaScript
import { connect } from 'react-redux';
|
|
import ClientInstances from './client-instance-component';
|
|
import { fetchClientInstances } from '../../store/client-instance-actions';
|
|
|
|
const mapStateToProps = state => ({ clientInstances: state.clientInstances.toJS() });
|
|
|
|
const StrategiesContainer = connect(
|
|
mapStateToProps,
|
|
{ fetchClientInstances }
|
|
)(ClientInstances);
|
|
|
|
export default StrategiesContainer;
|