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