UNPKG

cspace-ui

Version:
24 lines (19 loc) 419 B
import React from 'react'; import PropTypes from 'prop-types'; export default function withRecordType(BaseComponent) { function WithRecordType(props, context) { const { recordType, } = context; return ( <BaseComponent {...props} recordType={recordType} /> ); } WithRecordType.contextTypes = { recordType: PropTypes.string, }; return WithRecordType; }