Sha256: d9ca50eeab92b13dc77e7579a9d0e410fd2cf679d6c02976d98bd1cb88e63a87

Contents?: true

Size: 662 Bytes

Versions: 108

Compression:

Stored size: 662 Bytes

Contents

import { bindActionCreators } from 'redux';
import { connect } from 'react-redux';
import InsightsTab from './InsightsTab';
import * as actions from './InsightsTabActions';
import reducer from './InsightsTabReducer';
import { selectHits } from './InsightsTabSelectors';

// map state to props
const mapStateToProps = state => ({
  hits: selectHits(state),
});

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

// export reducers
export const hostInsightsReducers = { hostInsights: reducer };

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

Version data entries

108 entries across 108 versions & 1 rubygems

Version Path
foreman_rh_cloud-9.0.59 webpack/InsightsHostDetailsTab/index.js
foreman_rh_cloud-11.0.2 webpack/InsightsHostDetailsTab/index.js
foreman_rh_cloud-11.0.1 webpack/InsightsHostDetailsTab/index.js
foreman_rh_cloud-11.0.0 webpack/InsightsHostDetailsTab/index.js
foreman_rh_cloud-9.0.58 webpack/InsightsHostDetailsTab/index.js
foreman_rh_cloud-10.0.2 webpack/InsightsHostDetailsTab/index.js
foreman_rh_cloud-9.0.57 webpack/InsightsHostDetailsTab/index.js
foreman_rh_cloud-10.0.1 webpack/InsightsHostDetailsTab/index.js
foreman_rh_cloud-9.0.56 webpack/InsightsHostDetailsTab/index.js
foreman_rh_cloud-9.0.55 webpack/InsightsHostDetailsTab/index.js
foreman_rh_cloud-9.0.54 webpack/InsightsHostDetailsTab/index.js
foreman_rh_cloud-9.0.53 webpack/InsightsHostDetailsTab/index.js
foreman_rh_cloud-9.0.52 webpack/InsightsHostDetailsTab/index.js
foreman_rh_cloud-8.0.52 webpack/InsightsHostDetailsTab/index.js
foreman_rh_cloud-9.0.51 webpack/InsightsHostDetailsTab/index.js
foreman_rh_cloud-8.0.51 webpack/InsightsHostDetailsTab/index.js
foreman_rh_cloud-7.0.48 webpack/InsightsHostDetailsTab/index.js
foreman_rh_cloud-7.0.47 webpack/InsightsHostDetailsTab/index.js
foreman_rh_cloud-8.0.50 webpack/InsightsHostDetailsTab/index.js
foreman_rh_cloud-8.0.49 webpack/InsightsHostDetailsTab/index.js