Sha256: b33b17cb1bdeec7d2101da621cff73ea6378aff7aae3ad2813675263470b9b6a

Contents?: true

Size: 619 Bytes

Versions: 28

Compression:

Stored size: 619 Bytes

Contents

import { bindActionCreators } from 'redux';
import { connect } from 'react-redux';

import * as actions from './InsightsCloudSyncActions';
import InsightsCloudSync from './InsightsCloudSync';
import insightsCloudSyncReducers from './InsightsCloudSyncReducers';

// map state to props
const mapStateToProps = state => ({});

// map action dispatchers to props
const mapDispatchToProps = dispatch => bindActionCreators(actions, dispatch);

// export reducers
export const reducers = insightsCloudSyncReducers;

// export connected component
export default connect(mapStateToProps, mapDispatchToProps)(InsightsCloudSync);

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
foreman_rh_cloud-1.0.12 webpack/InsightsCloudSync/index.js
foreman_rh_cloud-2.0.12 webpack/InsightsCloudSync/index.js
foreman_rh_cloud-0.9.11 webpack/InsightsCloudSync/index.js
foreman_rh_cloud-1.0.11 webpack/InsightsCloudSync/index.js
foreman_rh_cloud-2.0.11 webpack/InsightsCloudSync/index.js
foreman_rh_cloud-0.9.10 webpack/InsightsCloudSync/index.js
foreman_rh_cloud-1.0.10 webpack/InsightsCloudSync/index.js
foreman_rh_cloud-2.0.10 webpack/InsightsCloudSync/index.js