Sha256: fe892c777d4ec156de7dcb4f88ed7d6e3ba519ef95caa82fa743dc4a6bd1265f

Contents?: true

Size: 747 Bytes

Versions: 161

Compression:

Stored size: 747 Bytes

Contents

import { bindActionCreators } from 'redux';
import { connect } from 'react-redux';
import { withRouter } from 'react-router-dom';

import * as actions from './UpstreamSubscriptionsActions';
import reducer from './UpstreamSubscriptionsReducer';

import UpstreamSubscriptionsPage from './UpstreamSubscriptionsPage';

// map state to props
const mapStateToProps = state => ({ upstreamSubscriptions: state.katello.upstreamSubscriptions });

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

// export reducers
export const upstreamSubscriptions = reducer;

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

Version data entries

161 entries across 161 versions & 1 rubygems

Version Path
katello-4.8.0.rc1 webpack/scenes/Subscriptions/UpstreamSubscriptions/index.js
katello-4.7.3 webpack/scenes/Subscriptions/UpstreamSubscriptions/index.js
katello-4.7.2 webpack/scenes/Subscriptions/UpstreamSubscriptions/index.js
katello-4.7.1 webpack/scenes/Subscriptions/UpstreamSubscriptions/index.js
katello-4.6.2.1 webpack/scenes/Subscriptions/UpstreamSubscriptions/index.js
katello-4.6.2 webpack/scenes/Subscriptions/UpstreamSubscriptions/index.js
katello-4.7.0 webpack/scenes/Subscriptions/UpstreamSubscriptions/index.js
katello-4.6.1 webpack/scenes/Subscriptions/UpstreamSubscriptions/index.js
katello-4.7.0.rc2 webpack/scenes/Subscriptions/UpstreamSubscriptions/index.js
katello-4.7.0.rc1 webpack/scenes/Subscriptions/UpstreamSubscriptions/index.js
katello-4.4.2.2 webpack/scenes/Subscriptions/UpstreamSubscriptions/index.js
katello-4.4.2.1 webpack/scenes/Subscriptions/UpstreamSubscriptions/index.js
katello-4.4.2 webpack/scenes/Subscriptions/UpstreamSubscriptions/index.js
katello-4.5.1 webpack/scenes/Subscriptions/UpstreamSubscriptions/index.js
katello-4.6.0 webpack/scenes/Subscriptions/UpstreamSubscriptions/index.js
katello-4.6.0.rc2 webpack/scenes/Subscriptions/UpstreamSubscriptions/index.js
katello-4.6.0.rc1 webpack/scenes/Subscriptions/UpstreamSubscriptions/index.js
katello-4.5.0 webpack/scenes/Subscriptions/UpstreamSubscriptions/index.js
katello-4.5.0.rc2 webpack/scenes/Subscriptions/UpstreamSubscriptions/index.js
katello-4.4.1 webpack/scenes/Subscriptions/UpstreamSubscriptions/index.js