1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-23 20:07:40 +02:00
unleash.unleash/frontend/src/component/application/application-list-container.js

10 lines
357 B
JavaScript
Raw Normal View History

2016-12-03 15:54:15 +01:00
import { connect } from 'react-redux';
import ApplicationList from './application-list-component';
import { fetchAll } from './../../store/application/actions';
2016-12-03 15:54:15 +01:00
2017-08-28 21:40:44 +02:00
const mapStateToProps = state => ({ applications: state.applications.get('list').toJS() });
2016-12-03 15:54:15 +01:00
2016-12-05 15:15:01 +01:00
const Container = connect(mapStateToProps, { fetchAll })(ApplicationList);
2016-12-03 15:54:15 +01:00
2016-12-05 15:15:01 +01:00
export default Container;