Sha256: f404a879ca4b731dabe933cbf1c4ff1072f9dae541fd767bb01428cdf03637b3

Contents?: true

Size: 527 Bytes

Versions: 6

Compression:

Stored size: 527 Bytes

Contents

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

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

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

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

// export reducers
export const reducers = {};

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

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
foreman_rh_cloud-2.0.9 webpack/InsightsCloudSync/index.js
foreman_rh_cloud-1.0.9 webpack/InsightsCloudSync/index.js
foreman_rh_cloud-0.9.9 webpack/InsightsCloudSync/index.js
foreman_rh_cloud-0.9.8 webpack/InsightsCloudSync/index.js
foreman_rh_cloud-1.0.8 webpack/InsightsCloudSync/index.js
foreman_rh_cloud-2.0.8 webpack/InsightsCloudSync/index.js