UNPKG

cspace-ui

Version:
26 lines (20 loc) 420 B
import React from 'react'; import PropTypes from 'prop-types'; export default function withCsid(BaseComponent) { function WithCsid(props, context) { const { csid, } = context; return ( <BaseComponent {...props} csid={csid} /> ); } WithCsid.propTypes = BaseComponent.propTypes; WithCsid.contextTypes = { csid: PropTypes.string, }; return WithCsid; }