Sha256: d395591714d09d608d7083f29801d6d843d9566eb24f899dc22c16c4c30712ab
Contents?: true
Size: 363 Bytes
Versions: 79
Compression:
Stored size: 363 Bytes
Contents
import React from 'react'; import PropTypes from 'prop-types'; import SmartProxyContentTable from './SmartProxyContentTable'; const Content = ({ smartProxyId }) => ( <SmartProxyContentTable smartProxyId={smartProxyId} /> ); Content.propTypes = { smartProxyId: PropTypes.number, }; Content.defaultProps = { smartProxyId: null, }; export default Content;
Version data entries
79 entries across 79 versions & 1 rubygems