Sha256: d9ca50eeab92b13dc77e7579a9d0e410fd2cf679d6c02976d98bd1cb88e63a87

Contents?: true

Size: 662 Bytes

Versions: 111

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

111 entries across 111 versions & 1 rubygems

Version Path
foreman_rh_cloud-3.0.19 webpack/InsightsHostDetailsTab/index.js
foreman_rh_cloud-2.0.18.1 webpack/InsightsHostDetailsTab/index.js
foreman_rh_cloud-3.0.18.1 webpack/InsightsHostDetailsTab/index.js
foreman_rh_cloud-1.0.18 webpack/InsightsHostDetailsTab/index.js
foreman_rh_cloud-2.0.18 webpack/InsightsHostDetailsTab/index.js
foreman_rh_cloud-3.0.18 webpack/InsightsHostDetailsTab/index.js
foreman_rh_cloud-1.0.17 webpack/InsightsHostDetailsTab/index.js
foreman_rh_cloud-2.0.17 webpack/InsightsHostDetailsTab/index.js
foreman_rh_cloud-3.0.17 webpack/InsightsHostDetailsTab/index.js
foreman_rh_cloud-2.0.16 webpack/InsightsHostDetailsTab/index.js
foreman_rh_cloud-1.0.16 webpack/InsightsHostDetailsTab/index.js
foreman_rh_cloud-3.0.16 webpack/InsightsHostDetailsTab/index.js
foreman_rh_cloud-1.0.15 webpack/InsightsHostDetailsTab/index.js
foreman_rh_cloud-2.0.15 webpack/InsightsHostDetailsTab/index.js
foreman_rh_cloud-3.0.15 webpack/InsightsHostDetailsTab/index.js
foreman_rh_cloud-3.0.14 webpack/InsightsHostDetailsTab/index.js
foreman_rh_cloud-2.0.14 webpack/InsightsHostDetailsTab/index.js
foreman_rh_cloud-1.0.14 webpack/InsightsHostDetailsTab/index.js
foreman_rh_cloud-0.9.14 webpack/InsightsHostDetailsTab/index.js
foreman_rh_cloud-0.9.13.1 webpack/InsightsHostDetailsTab/index.js