Sha256: 442f846f40c03e4a4b1ed00e1b6a169569108d3018e409683efa22006930cc36

Contents?: true

Size: 668 Bytes

Versions: 20

Compression:

Stored size: 668 Bytes

Contents

import React from 'react';
import PropTypes from 'prop-types';
import SmartProxyExpandableTable from './SmartProxyExpandableTable';

const Content = ({ smartProxyId, organizationId }) => (
  <SmartProxyExpandableTable smartProxyId={smartProxyId} organizationId={organizationId} />
);

Content.propTypes = {
  smartProxyId: PropTypes.oneOfType([
    PropTypes.number,
    PropTypes.string, // The API can sometimes return strings
  ]),
  organizationId: PropTypes.oneOfType([
    PropTypes.number,
    PropTypes.string, // The API can sometimes return strings
  ]),
};

Content.defaultProps = {
  smartProxyId: null,
  organizationId: null,
};

export default Content;

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
katello-4.15.0.rc2 webpack/scenes/SmartProxy/Content.js
katello-4.15.0.rc1 webpack/scenes/SmartProxy/Content.js
katello-4.14.1 webpack/scenes/SmartProxy/Content.js
katello-4.14.0 webpack/scenes/SmartProxy/Content.js
katello-4.14.0.rc3 webpack/scenes/SmartProxy/Content.js
katello-4.14.0.rc2 webpack/scenes/SmartProxy/Content.js
katello-4.14.0.rc1.1 webpack/scenes/SmartProxy/Content.js
katello-4.14.0.rc1 webpack/scenes/SmartProxy/Content.js
katello-4.13.1 webpack/scenes/SmartProxy/Content.js
katello-4.13.0 webpack/scenes/SmartProxy/Content.js
katello-4.12.1 webpack/scenes/SmartProxy/Content.js
katello-4.13.0.rc1 webpack/scenes/SmartProxy/Content.js
katello-4.12.0 webpack/scenes/SmartProxy/Content.js
katello-4.12.0.rc3 webpack/scenes/SmartProxy/Content.js
katello-4.12.0.rc2 webpack/scenes/SmartProxy/Content.js
katello-4.12.0.rc1 webpack/scenes/SmartProxy/Content.js
katello-4.11.1 webpack/scenes/SmartProxy/Content.js
katello-4.11.0 webpack/scenes/SmartProxy/Content.js
katello-4.11.0.rc2 webpack/scenes/SmartProxy/Content.js
katello-4.11.0.rc1 webpack/scenes/SmartProxy/Content.js